Skip to content

Commit

Permalink
fix: add queueName to Schedule type
Browse files Browse the repository at this point in the history
  • Loading branch information
CahidArda committed Oct 28, 2024
1 parent f955607 commit 4bd48e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/client/schedules.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-magic-numbers */
/* eslint-disable @typescript-eslint/no-non-null-assertion */
import { afterEach, describe, expect, test } from "bun:test";
import { Client } from "./client";
Expand Down
3 changes: 2 additions & 1 deletion src/client/schedules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export type Schedule = {
failureCallback?: string;
callerIp?: string;
isPaused: boolean;
queueName?: string;
};

export type CreateScheduleRequest = {
Expand Down Expand Up @@ -108,7 +109,7 @@ export type CreateScheduleRequest = {
/**
* Schedule id to use.
*
* Can be used to updatine the settings of an existing schedule.
* Can be used to update the settings of an existing schedule.
*
* @default undefined
*/
Expand Down

0 comments on commit 4bd48e6

Please sign in to comment.