Skip to content

Commit 577821a

Browse files
committed
Cleaning.
- Addresses - dapr#688 (comment) - dapr#688 (comment) Signed-off-by: Alexander Trauzzi <[email protected]>
1 parent e2072fa commit 577821a

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

src/implementation/Client/GRPCClient/jobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616

1717
import IClientJobs from "../../../interfaces/Client/IClientJobs";
1818
import GRPCClient from "./GRPCClient";
19-
import { Schedule } from "../../../types/jobs/JobSchedule.type";
19+
import { Schedule } from "../../../types/jobs/Schedule.type";
2020
import { Job } from "../../../types/jobs/Job.type";
2121

2222

src/implementation/Client/HTTPClient/jobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import IClientJobs from "../../../interfaces/Client/IClientJobs";
1515
import HTTPClient from "./HTTPClient";
1616
import { THTTPExecuteParams } from "../../../types/http/THTTPExecuteParams.type";
1717
import { Job } from "../../../types/jobs/Job.type";
18-
import { Schedule, BoxedSchedule } from "../../../types/jobs/JobSchedule.type";
18+
import { Schedule, BoxedSchedule } from "../../../types/jobs/Schedule.type";
1919

2020
export default class HTTPClientJobs implements IClientJobs {
2121

src/interfaces/Client/IClientJobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ See the License for the specific language governing permissions and
1111
limitations under the License.
1212
*/
1313

14-
import { Schedule } from "../../types/jobs/JobSchedule.type";
14+
import { Schedule } from "../../types/jobs/Schedule.type";
1515
import { Job } from "../../types/jobs/Job.type";
1616

1717
export default interface IClientJobs {

src/types/jobs/Job.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ limitations under the License.
1212
*/
1313

1414

15-
import { Schedule } from "./JobSchedule.type";
15+
import { Schedule } from "./Schedule.type";
1616

1717
export interface Job<DataType = object | string> {
1818
name: string;
File renamed without changes.

test/unit/jobs/jobs.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ limitations under the License.
1313

1414
import HTTPClient from "../../../src/implementation/Client/HTTPClient/HTTPClient";
1515
import HTTPClientJobs from "../../../src/implementation/Client/HTTPClient/jobs";
16-
import { Period } from "../../../src/types/jobs/JobSchedule.type";
16+
import { Period } from "../../../src/types/jobs/Schedule.type";
1717
import { CronExpressionBuilder, CronPeriod, Month } from "../../../src/types/jobs/CronExpression.type";
1818

1919
jest.mock("../../../src/implementation/Client/HTTPClient/HTTPClient");

0 commit comments

Comments
 (0)