@tourmalinecore/inner-circle-time-api-js-client 1.10.1 → 1.10.2

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
@@ -63,6 +63,10 @@ export interface CreateVacationEntryRequest {
63
63
  period: PeriodDto;
64
64
  isUnpaid: boolean;
65
65
  }
66
+ export interface CreateVacationEntryResponse {
67
+ /** @format int64 */
68
+ newVacationEntryId: number;
69
+ }
66
70
  export interface EmployeeDto {
67
71
  /** @format int64 */
68
72
  id: number;
@@ -315,7 +319,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
315
319
  }
316
320
  /**
317
321
  * @title inner-circle-time-api
318
- * @version 1.10.1
322
+ * @version 1.10.2
319
323
  * @baseUrl http://localhost:6507/
320
324
  */
321
325
  export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
@@ -468,7 +472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
468
472
  * @summary Create a vacation entry
469
473
  * @request POST:/api/tracking/vacation-entries
470
474
  */
471
- trackingCreateVacationEntry: (data: CreateVacationEntryRequest, params?: RequestParams) => Promise<AxiosResponse<CreateVacationEntryRequest, any, {}>>;
475
+ trackingCreateVacationEntry: (data: CreateVacationEntryRequest, params?: RequestParams) => Promise<AxiosResponse<CreateVacationEntryResponse, any, {}>>;
472
476
  /**
473
477
  * No description
474
478
  *
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.10.1
113
+ * @version 1.10.2
114
114
  * @baseUrl http://localhost:6507/
115
115
  */
116
116
  class Api extends HttpClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tourmalinecore/inner-circle-time-api-js-client",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
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": {