Skip to content

Commit 0050bd6

Browse files
committed
Bump package version
1 parent d34c389 commit 0050bd6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@timetac/js-client-library",
3-
"version": "2.104.0",
3+
"version": "2.104.1",
44
"description": "TimeTac API JS client library",
55
"homepage": "https://github.com/TimeTac/js-client-library#readme",
66
"repository": {

src/workSchedules/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export type WorkScheduleCreate = Omit<
3939
| 'active'
4040
>;
4141

42-
export type WorkScheduleUpdate = Pick<WorkSchedule, 'id' | 'active'> &
42+
export type WorkScheduleUpdate = Pick<WorkSchedule, 'id'> &
4343
Omit<
4444
Partial<WorkSchedule>,
4545
| 'archived'
@@ -52,4 +52,5 @@ export type WorkScheduleUpdate = Pick<WorkSchedule, 'id' | 'active'> &
5252
| 'law_rest_period_minimum_hours'
5353
| 'law_rest_period_minimum_weekly_hours'
5454
| 'is_default'
55+
| 'active'
5556
>;

0 commit comments

Comments
 (0)