jira.js
    Preparing search index...

    Function deleteWorklog

    • Deletes an existing worklog entry.

      Parameters

      • client: Client
      • parameters: {
            adjustEstimate?: string;
            id: string;
            increaseBy?: string;
            issueIdOrKey: string;
            newEstimate?: string;
        }
        • OptionaladjustEstimate?: string

          Allows you to provide specific instructions to update the remaining time estimate of the issue. Valid values are: new, leave, manual, auto

        • id: string

          Id of the worklog to be deleted

        • OptionalincreaseBy?: string

          Required when 'manual' is selected for adjustEstimate. e.g. "2d"

        • issueIdOrKey: string

          A string containing the issue id or key the worklog belongs to

        • OptionalnewEstimate?: string

          Required when 'new' is selected for adjustEstimate. e.g. "2d"

      • Optionaloptions: RequestOptions

      Returns Promise<void>