@saritasa/crm-delmar-core-sdk 0.1.80 → 0.1.90
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/README.md +2 -2
- package/api/clients-api.serviceInterface.d.ts +1 -1
- package/api/export-margin-report-api.serviceInterface.d.ts +1 -1
- package/api/jobs-api.serviceInterface.d.ts +7 -0
- package/api/projects-api.serviceInterface.d.ts +1 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +24 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/daily-job.dto.d.ts +27 -0
- package/model/job-report-hourly.dto.d.ts +2 -2
- package/model/job.dto.d.ts +4 -1
- package/model/models.d.ts +2 -0
- package/model/task-daily-job.dto.d.ts +18 -0
- package/package.json +2 -2
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { SimpleUserDto } from "./simple-user.dto";
|
|
11
|
+
import { JobTypeEnumDto } from "./job-type-enum.dto";
|
|
12
|
+
import { TaskDailyJobDto } from "./task-daily-job.dto";
|
|
13
|
+
/**
|
|
14
|
+
* Serializer for daily job report.
|
|
15
|
+
*/
|
|
16
|
+
export interface DailyJobDto {
|
|
17
|
+
readonly id: number;
|
|
18
|
+
readonly created: string;
|
|
19
|
+
readonly modified: string;
|
|
20
|
+
date: string;
|
|
21
|
+
type: JobTypeEnumDto;
|
|
22
|
+
text: string;
|
|
23
|
+
is_billable: boolean;
|
|
24
|
+
duration: number;
|
|
25
|
+
readonly billed_by_data: SimpleUserDto | null;
|
|
26
|
+
readonly task_data: TaskDailyJobDto;
|
|
27
|
+
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { DailyJobDto } from "./daily-job.dto";
|
|
11
11
|
/**
|
|
12
12
|
* Representation of hourly report for jobs.
|
|
13
13
|
*/
|
|
@@ -16,5 +16,5 @@ export interface JobReportHourlyDto {
|
|
|
16
16
|
billable: number;
|
|
17
17
|
unbillable: number;
|
|
18
18
|
total: number;
|
|
19
|
-
jobs: Array<
|
|
19
|
+
jobs: Array<DailyJobDto>;
|
|
20
20
|
}
|
package/model/job.dto.d.ts
CHANGED
|
@@ -24,7 +24,10 @@ export interface JobDto {
|
|
|
24
24
|
type: JobTypeEnumDto;
|
|
25
25
|
text: string;
|
|
26
26
|
is_billable: boolean;
|
|
27
|
-
|
|
27
|
+
/**
|
|
28
|
+
* Get duration or rounded duration.
|
|
29
|
+
*/
|
|
30
|
+
readonly duration: number;
|
|
28
31
|
task: number;
|
|
29
32
|
readonly billed_by: number | null;
|
|
30
33
|
readonly created_by: number | null;
|
package/model/models.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export * from "./component.dto";
|
|
|
34
34
|
export * from "./component-hourly-report.dto";
|
|
35
35
|
export * from "./config-enum.dto";
|
|
36
36
|
export * from "./create-jira-project-request.dto";
|
|
37
|
+
export * from "./daily-job.dto";
|
|
37
38
|
export * from "./date-range-field.dto";
|
|
38
39
|
export * from "./date-range-field-request.dto";
|
|
39
40
|
export * from "./debug-login-request.dto";
|
|
@@ -240,6 +241,7 @@ export * from "./simple-work-type-request.dto";
|
|
|
240
241
|
export * from "./sprint.dto";
|
|
241
242
|
export * from "./sprint-hourly-report.dto";
|
|
242
243
|
export * from "./start-compare-tasks-request.dto";
|
|
244
|
+
export * from "./task-daily-job.dto";
|
|
243
245
|
export * from "./task.dto";
|
|
244
246
|
export * from "./task-hourly-report.dto";
|
|
245
247
|
export * from "./task-progress.dto";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer for task job daily report.
|
|
12
|
+
*/
|
|
13
|
+
export interface TaskDailyJobDto {
|
|
14
|
+
readonly id: number;
|
|
15
|
+
readonly created: string;
|
|
16
|
+
readonly modified: string;
|
|
17
|
+
title: string;
|
|
18
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.
|
|
3
|
+
"version": "0.1.90",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.48)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|