Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(amplication-server): updated types #8689

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ export interface CreateService {
* the ID of the project in which to create the service
*/
projectId: string;
/**
* Optional. The code generator to use for the service. Leave blank unless a specific code generator was asked by the user
*/
codeGenerator?: "DotNet" | "NodeJs";
/**
* a list of IDs of the plugins to install.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,4 @@
* and run json-schema-to-typescript to regenerate this file.
*/

export interface GetPlugins {
/**
* The type of code generator of the service. When not available, fetch the service details to find the codeGenerator.
*/
codeGenerator: "DotNet" | "NodeJs";
}
export interface GetPlugins {}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export * from "./getModuleDtosAndEnums.types";
export * from "./getPlugins.types";
export * from "./getProjectPendingChanges.types";
export * from "./getProjectServices.types";
export * from "./getService.types";
export * from "./getServiceEntities.types";
export * from "./getServiceModules.types";
export * from "./installPlugins.types";