Update workflow stepId type (#13602)

This commit is contained in:
Abdul Rahman
2025-08-04 20:23:42 +05:30
committed by GitHub
parent 2cebb72447
commit d958447bb6
3 changed files with 3 additions and 3 deletions
@@ -712,7 +712,7 @@ export type DeleteWebhookDto = {
export type DeleteWorkflowVersionStepInput = {
/** Step to delete ID */
stepId: Scalars['UUID'];
stepId: Scalars['String'];
/** Workflow version ID */
workflowVersionId: Scalars['UUID'];
};
@@ -676,7 +676,7 @@ export type DeleteWebhookDto = {
export type DeleteWorkflowVersionStepInput = {
/** Step to delete ID */
stepId: Scalars['UUID'];
stepId: Scalars['String'];
/** Workflow version ID */
workflowVersionId: Scalars['UUID'];
};
@@ -10,7 +10,7 @@ export class DeleteWorkflowVersionStepInput {
})
workflowVersionId: string;
@Field(() => UUIDScalarType, {
@Field(() => String, {
description: 'Step to delete ID',
nullable: false,
})