@saritasa/crm-delmar-core-sdk 0.1.67 → 0.1.68
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/tasks-api.service.d.ts +23 -1
- package/api/tasks-api.serviceInterface.d.ts +12 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +81 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +4 -0
- package/model/simple-component-request.dto.d.ts +15 -0
- package/model/simple-sprint-request.dto.d.ts +15 -0
- package/model/task.dto.d.ts +1 -1
- package/model/update-task-request.dto.d.ts +15 -0
- package/model/update-task.dto.d.ts +50 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -206,6 +206,7 @@ export * from "./simple-client.dto";
|
|
|
206
206
|
export * from "./simple-client-request.dto";
|
|
207
207
|
export * from "./simple-client-status-report.dto";
|
|
208
208
|
export * from "./simple-component.dto";
|
|
209
|
+
export * from "./simple-component-request.dto";
|
|
209
210
|
export * from "./simple-department.dto";
|
|
210
211
|
export * from "./simple-department-request.dto";
|
|
211
212
|
export * from "./simple-jira-instance.dto";
|
|
@@ -224,6 +225,7 @@ export * from "./simple-project-request.dto";
|
|
|
224
225
|
export * from "./simple-role.dto";
|
|
225
226
|
export * from "./simple-role-request.dto";
|
|
226
227
|
export * from "./simple-sprint.dto";
|
|
228
|
+
export * from "./simple-sprint-request.dto";
|
|
227
229
|
export * from "./simple-task.dto";
|
|
228
230
|
export * from "./simple-task-request.dto";
|
|
229
231
|
export * from "./simple-user.dto";
|
|
@@ -254,6 +256,8 @@ export * from "./update-client-project-note-file-request.dto";
|
|
|
254
256
|
export * from "./update-job.dto";
|
|
255
257
|
export * from "./update-job-request.dto";
|
|
256
258
|
export * from "./update-project-note-request.dto";
|
|
259
|
+
export * from "./update-task.dto";
|
|
260
|
+
export * from "./update-task-request.dto";
|
|
257
261
|
export * from "./user-capacity.dto";
|
|
258
262
|
export * from "./user-daily-tabular-report.dto";
|
|
259
263
|
export * from "./user.dto";
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
* Simple serializer for Component model.
|
|
12
|
+
*/
|
|
13
|
+
export interface SimpleComponentRequestDto {
|
|
14
|
+
name: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
* Simple serializer class for Sprint model.
|
|
12
|
+
*/
|
|
13
|
+
export interface SimpleSprintRequestDto {
|
|
14
|
+
name: string;
|
|
15
|
+
}
|
package/model/task.dto.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export interface TaskDto {
|
|
|
36
36
|
readonly unbillable_duration: number;
|
|
37
37
|
readonly total_duration: number;
|
|
38
38
|
readonly time_left: number;
|
|
39
|
-
overtime: string;
|
|
39
|
+
readonly overtime: string;
|
|
40
40
|
readonly project_data: SimpleProjectDto;
|
|
41
41
|
readonly component_data: SimpleComponentDto | null;
|
|
42
42
|
readonly sprint_data: SimpleSprintDto | null;
|
|
@@ -0,0 +1,15 @@
|
|
|
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 updating Task.
|
|
12
|
+
*/
|
|
13
|
+
export interface UpdateTaskRequestDto {
|
|
14
|
+
is_billable: boolean;
|
|
15
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 { SimpleProjectDto } from "./simple-project.dto";
|
|
12
|
+
import { SimpleComponentDto } from "./simple-component.dto";
|
|
13
|
+
import { SimpleJiraTaskDto } from "./simple-jira-task.dto";
|
|
14
|
+
import { PriorityEnumDto } from "./priority-enum.dto";
|
|
15
|
+
import { SimpleSprintDto } from "./simple-sprint.dto";
|
|
16
|
+
/**
|
|
17
|
+
* Serializer for updating Task.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateTaskDto {
|
|
20
|
+
readonly id: number;
|
|
21
|
+
readonly created: string;
|
|
22
|
+
readonly modified: string;
|
|
23
|
+
readonly title: string;
|
|
24
|
+
readonly text: string;
|
|
25
|
+
readonly status: string;
|
|
26
|
+
readonly estimated: number;
|
|
27
|
+
readonly priority: PriorityEnumDto;
|
|
28
|
+
readonly project: number;
|
|
29
|
+
readonly component: number | null;
|
|
30
|
+
readonly sprint: number | null;
|
|
31
|
+
readonly assignee: number | null;
|
|
32
|
+
readonly created_by: number | null;
|
|
33
|
+
readonly updated_by: number | null;
|
|
34
|
+
readonly jira_link: number;
|
|
35
|
+
readonly billable_jobs_count: number;
|
|
36
|
+
readonly unbillable_jobs_count: number;
|
|
37
|
+
readonly billable_duration: number;
|
|
38
|
+
readonly unbillable_duration: number;
|
|
39
|
+
readonly total_duration: number;
|
|
40
|
+
readonly time_left: number;
|
|
41
|
+
readonly overtime: string;
|
|
42
|
+
is_billable: boolean;
|
|
43
|
+
readonly project_data: SimpleProjectDto;
|
|
44
|
+
readonly component_data: SimpleComponentDto | null;
|
|
45
|
+
readonly sprint_data: SimpleSprintDto | null;
|
|
46
|
+
readonly jira_link_data: SimpleJiraTaskDto;
|
|
47
|
+
readonly assignee_data: SimpleUserDto | null;
|
|
48
|
+
readonly created_by_data: SimpleUserDto | null;
|
|
49
|
+
readonly updated_by_data: SimpleUserDto | null;
|
|
50
|
+
}
|
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.68",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.46)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|