@amplication/code-gen-types
Advanced tools
Comparing version 2.0.33-beta.6 to 2.0.33-beta.7
{ | ||
"name": "@amplication/code-gen-types", | ||
"version": "2.0.33-beta.6", | ||
"version": "2.0.33-beta.7", | ||
"description": "This library supplies all the contracts for Amplication Code Generation. The purpose is to make the contracts available for inclusion in plugins.", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -55,5 +55,2 @@ import { Entity, EntityLookupField, ModuleContainer, ModuleAction, entityActions } from "./code-gen-types"; | ||
}[]; | ||
export interface CreateServerDotEnvParams extends EventParams { | ||
envVariables: VariableDictionary; | ||
} | ||
export interface CreateServerGitIgnoreParams extends EventParams { | ||
@@ -84,2 +81,7 @@ gitignorePaths: string[]; | ||
} | ||
export interface CreateServerAppsettingsParams extends EventParams { | ||
updateProperties: { | ||
[key: string]: any; | ||
}; | ||
} | ||
export interface CreateMessageBrokerParams extends EventParams { | ||
@@ -86,0 +88,0 @@ } |
@@ -1,2 +0,2 @@ | ||
import { CreateDTOsParams, CreateEntityControllerBaseParams, CreateEntityControllerParams, CreateEntityControllerToManyRelationMethodsParams, CreateEntityExtensionsParams, CreateEntityGrpcControllerBaseParams, CreateEntityGrpcControllerParams, CreateEntityInterfaceParams, CreateEntityServiceBaseParams, CreateEntityServiceParams, CreateMainFileParams, CreateMessageBrokerClientOptionsFactoryParams, CreateMessageBrokerParams, CreateMessageBrokerServiceBaseParams, CreateMessageBrokerServiceParams, CreateMessageBrokerTopicsEnumParams, CreateSeedParams, CreateServerAuthParams, CreateServerCsprojParams, CreateServerDockerComposeDevParams, CreateServerDockerComposeParams, CreateServerDotEnvParams, CreateServerGitIgnoreParams, CreateServerParams, CreateServerSecretsManagerParams, CreateSwaggerParams, LoadStaticFilesParams } from "./dotnet-plugin-events-params.types"; | ||
import { CreateDTOsParams, CreateEntityControllerBaseParams, CreateEntityControllerParams, CreateEntityControllerToManyRelationMethodsParams, CreateEntityExtensionsParams, CreateEntityGrpcControllerBaseParams, CreateEntityGrpcControllerParams, CreateEntityInterfaceParams, CreateEntityServiceBaseParams, CreateEntityServiceParams, CreateMainFileParams, CreateMessageBrokerClientOptionsFactoryParams, CreateMessageBrokerParams, CreateMessageBrokerServiceBaseParams, CreateMessageBrokerServiceParams, CreateMessageBrokerTopicsEnumParams, CreateSeedParams, CreateServerAppsettingsParams, CreateServerAuthParams, CreateServerCsprojParams, CreateServerDockerComposeDevParams, CreateServerDockerComposeParams, CreateServerGitIgnoreParams, CreateServerParams, CreateServerSecretsManagerParams, CreateSwaggerParams, LoadStaticFilesParams } from "./dotnet-plugin-events-params.types"; | ||
import { DotnetEventNames, PluginEventType } from "./dotnet-plugins.types"; | ||
@@ -7,5 +7,5 @@ import { CodeBlock, Interface } from "@amplication/csharp-ast"; | ||
[DotnetEventNames.CreateServer]?: PluginEventType<CreateServerParams>; | ||
[DotnetEventNames.CreateServerDotEnv]?: PluginEventType<CreateServerDotEnvParams, CodeBlock>; | ||
[DotnetEventNames.CreateServerGitIgnore]?: PluginEventType<CreateServerGitIgnoreParams, CodeBlock>; | ||
[DotnetEventNames.CreateServerCsproj]?: PluginEventType<CreateServerCsprojParams>; | ||
[DotnetEventNames.CreateServerCsproj]?: PluginEventType<CreateServerCsprojParams, CodeBlock>; | ||
[DotnetEventNames.CreateServerAppsettings]?: PluginEventType<CreateServerAppsettingsParams, CodeBlock>; | ||
[DotnetEventNames.CreateEntityService]?: PluginEventType<CreateEntityServiceParams>; | ||
@@ -12,0 +12,0 @@ [DotnetEventNames.CreateEntityServiceBase]?: PluginEventType<CreateEntityServiceBaseParams>; |
@@ -68,3 +68,2 @@ import type { Promisable } from "type-fest"; | ||
CreateMainFile = "CreateMainFile", | ||
CreateServerDotEnv = "CreateServerDotEnv", | ||
CreateServerGitIgnore = "CreateServerGitIgnore", | ||
@@ -84,2 +83,3 @@ CreateAdminGitIgnore = "CreateAdminGitIgnore", | ||
CreateServerCsproj = "CreateServerCsproj", | ||
CreateServerAppsettings = "CreateServerAppsettings", | ||
CreateAdminUIPackageJson = "CreateAdminUIPackageJson", | ||
@@ -86,0 +86,0 @@ CreateEntityModule = "CreateEntityModule", |
@@ -17,3 +17,2 @@ "use strict"; | ||
DotnetEventNames["CreateMainFile"] = "CreateMainFile"; | ||
DotnetEventNames["CreateServerDotEnv"] = "CreateServerDotEnv"; | ||
DotnetEventNames["CreateServerGitIgnore"] = "CreateServerGitIgnore"; | ||
@@ -33,2 +32,3 @@ DotnetEventNames["CreateAdminGitIgnore"] = "CreateAdminGitIgnore"; | ||
DotnetEventNames["CreateServerCsproj"] = "CreateServerCsproj"; | ||
DotnetEventNames["CreateServerAppsettings"] = "CreateServerAppsettings"; | ||
DotnetEventNames["CreateAdminUIPackageJson"] = "CreateAdminUIPackageJson"; | ||
@@ -35,0 +35,0 @@ DotnetEventNames["CreateEntityModule"] = "CreateEntityModule"; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
231039
5253