@amplication/code-gen-types
Advanced tools
Comparing version 2.0.33-beta.17 to 2.0.33-beta.18
{ | ||
"name": "@amplication/code-gen-types", | ||
"version": "2.0.33-beta.17", | ||
"version": "2.0.33-beta.18", | ||
"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", |
@@ -36,2 +36,7 @@ import { CodeBlock } from "@amplication/csharp-ast"; | ||
} | ||
export interface createResourceDbContextFileParams extends EventParams { | ||
entities: Entity[]; | ||
resourceName: string; | ||
apisDir: string; | ||
} | ||
export interface CreateEntityGrpcControllerParams extends EventParams { | ||
@@ -38,0 +43,0 @@ entity: Entity; |
@@ -1,2 +0,2 @@ | ||
import { CreateDTOsParams, CreateEntityControllerBaseParams, CreateEntityControllerParams, CreateEntityControllerToManyRelationMethodsParams, CreateEntityExtensionsParams, CreateEntityGrpcControllerBaseParams, CreateEntityGrpcControllerParams, CreateEntityInterfaceParams, CreateEntityModelParams, CreateEntityServiceBaseParams, CreateEntityServiceParams, CreateMessageBrokerClientOptionsFactoryParams, CreateMessageBrokerParams, CreateMessageBrokerServiceBaseParams, CreateMessageBrokerServiceParams, CreateMessageBrokerTopicsEnumParams, CreateProgramFileParams, CreateSeedParams, CreateServerAppsettingsParams, CreateServerAuthParams, CreateServerCsprojParams, CreateServerDockerComposeParams, CreateServerGitIgnoreParams, CreateServerParams, CreateServerSecretsManagerParams, CreateSwaggerParams, LoadStaticFilesParams } from "./dotnet-plugin-events-params.types"; | ||
import { CreateDTOsParams, CreateEntityControllerBaseParams, CreateEntityControllerParams, CreateEntityControllerToManyRelationMethodsParams, CreateEntityExtensionsParams, CreateEntityGrpcControllerBaseParams, CreateEntityGrpcControllerParams, CreateEntityInterfaceParams, CreateEntityModelParams, CreateEntityServiceBaseParams, CreateEntityServiceParams, CreateMessageBrokerClientOptionsFactoryParams, CreateMessageBrokerParams, CreateMessageBrokerServiceBaseParams, CreateMessageBrokerServiceParams, CreateMessageBrokerTopicsEnumParams, CreateProgramFileParams, CreateSeedParams, CreateServerAppsettingsParams, CreateServerAuthParams, CreateServerCsprojParams, CreateServerDockerComposeParams, CreateServerGitIgnoreParams, CreateServerParams, CreateServerSecretsManagerParams, CreateSwaggerParams, LoadStaticFilesParams, createResourceDbContextFileParams } from "./dotnet-plugin-events-params.types"; | ||
import { DotnetEventNames, PluginEventType } from "./dotnet-plugins.types"; | ||
@@ -32,2 +32,3 @@ import { CodeBlock, Interface } from "@amplication/csharp-ast"; | ||
[DotnetEventNames.CreateEntityModel]?: PluginEventType<CreateEntityModelParams>; | ||
[DotnetEventNames.createResourceDbContextFile]?: PluginEventType<createResourceDbContextFileParams>; | ||
}; |
@@ -102,3 +102,4 @@ import type { Promisable } from "type-fest"; | ||
CreateEntityExtensions = "CreateEntityExtensions", | ||
CreateEntityModel = "CreateEntityModel" | ||
CreateEntityModel = "CreateEntityModel", | ||
createResourceDbContextFile = "createResourceDbContextFile" | ||
} | ||
@@ -105,0 +106,0 @@ export interface AmplicationPlugin { |
@@ -52,3 +52,4 @@ "use strict"; | ||
DotnetEventNames["CreateEntityModel"] = "CreateEntityModel"; | ||
DotnetEventNames["createResourceDbContextFile"] = "createResourceDbContextFile"; | ||
})(DotnetEventNames || (exports.DotnetEventNames = DotnetEventNames = {})); | ||
//# sourceMappingURL=dotnet-plugins.types.js.map |
Sorry, the diff of this file is not supported yet
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
232041
5275