## Summary - Remove `latestVersion` and `publishedVersions` columns from `LogicFunction` entity - Remove version parameter from logic function execution, build, and source code retrieval - Update all related services, DTOs, utilities, and tests - Add database migration to drop the version columns
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import { ID, InputType } from '@nestjs/graphql';
|
|
|
|
import { IDField } from '@ptc-org/nestjs-query-graphql';
|
|
|
|
@InputType()
|
|
export class GetLogicFunctionSourceCodeInput {
|
|
@IDField(() => ID, { description: 'The id of the function.' })
|
|
id!: string;
|
|
}
|