@tourmalinecore/inner-circle-time-api-js-client 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +22 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
export interface AwayWithMakeUpTimeEntryDto {
|
|
2
|
+
/** @format int64 */
|
|
3
|
+
id: number;
|
|
4
|
+
/** @format date-time */
|
|
5
|
+
startTime: string;
|
|
6
|
+
/** @format date-time */
|
|
7
|
+
endTime: string;
|
|
8
|
+
type: EntryType;
|
|
9
|
+
description: string;
|
|
10
|
+
makeUpTimeList: MakeUpTimeEntryDto[];
|
|
11
|
+
}
|
|
1
12
|
export interface CreateAwayWithMakeUpTimeEntryRequest {
|
|
2
13
|
/** @format date-time */
|
|
3
14
|
startTime: string;
|
|
@@ -59,6 +70,8 @@ export interface GetEmployeesTrackedTaskHoursResponse {
|
|
|
59
70
|
export interface GetEntriesByPeriodResponse {
|
|
60
71
|
taskEntries: TaskEntryDto[];
|
|
61
72
|
unwellEntries: UnwellEntryDto[];
|
|
73
|
+
awayWithMakeUpTimeEntries: AwayWithMakeUpTimeEntryDto[];
|
|
74
|
+
makeUpTimeEntries: MakeUpTimeEntryWithRelatedEntryIdDto[];
|
|
62
75
|
}
|
|
63
76
|
export interface GetPersonalReportResponse {
|
|
64
77
|
trackedEntries: TrackedEntryDto[];
|
|
@@ -73,6 +86,14 @@ export interface MakeUpTimeEntryDto {
|
|
|
73
86
|
/** @format date-time */
|
|
74
87
|
endTime: string;
|
|
75
88
|
}
|
|
89
|
+
export interface MakeUpTimeEntryWithRelatedEntryIdDto {
|
|
90
|
+
/** @format int64 */
|
|
91
|
+
relatedEntryId: number;
|
|
92
|
+
/** @format date-time */
|
|
93
|
+
startTime: string;
|
|
94
|
+
/** @format date-time */
|
|
95
|
+
endTime: string;
|
|
96
|
+
}
|
|
76
97
|
export interface ProjectDto {
|
|
77
98
|
/** @format int64 */
|
|
78
99
|
id: number;
|
|
@@ -204,7 +225,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
204
225
|
}
|
|
205
226
|
/**
|
|
206
227
|
* @title inner-circle-time-api
|
|
207
|
-
* @version 1.
|
|
228
|
+
* @version 1.6.0
|
|
208
229
|
* @baseUrl http://localhost:6507/
|
|
209
230
|
*/
|
|
210
231
|
export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tourmalinecore/inner-circle-time-api-js-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Client for inner-circle-time-api that provides TypeScript types and client to make network calls from JavaScript.",
|
|
5
5
|
"homepage": "https://github.com/TourmalineCore/inner-circle-time-api#readme",
|
|
6
6
|
"bugs": {
|