@tourmalinecore/inner-circle-time-api-js-client 1.4.0 → 1.4.1

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 CHANGED
@@ -95,6 +95,8 @@ export interface TrackedEntryDto {
95
95
  startTime: string;
96
96
  /** @format date-time */
97
97
  endTime: string;
98
+ /** @format double */
99
+ hours: number;
98
100
  entryType: EntryType;
99
101
  project: ProjectDto;
100
102
  task: TaskDto;
@@ -174,7 +176,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
174
176
  }
175
177
  /**
176
178
  * @title inner-circle-time-api
177
- * @version 1.4.0
179
+ * @version 1.4.1
178
180
  * @baseUrl http://localhost:6507/
179
181
  */
180
182
  export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
@@ -275,7 +277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
275
277
  *
276
278
  * @tags Reporting
277
279
  * @name ReportingGetPersonalReport
278
- * @summary Get personal report
280
+ * @summary Get a personal employee report sorted by date in ascending order
279
281
  * @request GET:/api/reporting/personal-report
280
282
  */
281
283
  reportingGetPersonalReport: (query: {
package/dist/index.js CHANGED
@@ -110,7 +110,7 @@ class HttpClient {
110
110
  exports.HttpClient = HttpClient;
111
111
  /**
112
112
  * @title inner-circle-time-api
113
- * @version 1.4.0
113
+ * @version 1.4.1
114
114
  * @baseUrl http://localhost:6507/
115
115
  */
116
116
  class Api extends HttpClient {
@@ -203,7 +203,7 @@ class Api extends HttpClient {
203
203
  *
204
204
  * @tags Reporting
205
205
  * @name ReportingGetPersonalReport
206
- * @summary Get personal report
206
+ * @summary Get a personal employee report sorted by date in ascending order
207
207
  * @request GET:/api/reporting/personal-report
208
208
  */
209
209
  reportingGetPersonalReport: (query, params = {}) => this.request(Object.assign({ path: `/api/reporting/personal-report`, method: "GET", query: query, format: "json" }, params)),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tourmalinecore/inner-circle-time-api-js-client",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
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": {