@saritasa/crm-delmar-core-sdk 0.1.65 → 0.1.67
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/jobs-api.service.d.ts +23 -1
- package/api/jobs-api.serviceInterface.d.ts +12 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +71 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +4 -0
- package/model/simple-jira-task-request.dto.d.ts +16 -0
- package/model/simple-task-request.dto.d.ts +19 -0
- package/model/update-job-request.dto.d.ts +15 -0
- package/model/update-job.dto.d.ts +41 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -213,6 +213,7 @@ export * from "./simple-jira-instance-request.dto";
|
|
|
213
213
|
export * from "./simple-jira-project.dto";
|
|
214
214
|
export * from "./simple-jira-project-request.dto";
|
|
215
215
|
export * from "./simple-jira-task.dto";
|
|
216
|
+
export * from "./simple-jira-task-request.dto";
|
|
216
217
|
export * from "./simple-job.dto";
|
|
217
218
|
export * from "./simple-location.dto";
|
|
218
219
|
export * from "./simple-location-request.dto";
|
|
@@ -224,6 +225,7 @@ export * from "./simple-role.dto";
|
|
|
224
225
|
export * from "./simple-role-request.dto";
|
|
225
226
|
export * from "./simple-sprint.dto";
|
|
226
227
|
export * from "./simple-task.dto";
|
|
228
|
+
export * from "./simple-task-request.dto";
|
|
227
229
|
export * from "./simple-user.dto";
|
|
228
230
|
export * from "./simple-user-period-approver.dto";
|
|
229
231
|
export * from "./simple-user-period-approver-request.dto";
|
|
@@ -249,6 +251,8 @@ export * from "./token-refresh-request.dto";
|
|
|
249
251
|
export * from "./token-verify-request.dto";
|
|
250
252
|
export * from "./update-client-note-request.dto";
|
|
251
253
|
export * from "./update-client-project-note-file-request.dto";
|
|
254
|
+
export * from "./update-job.dto";
|
|
255
|
+
export * from "./update-job-request.dto";
|
|
252
256
|
export * from "./update-project-note-request.dto";
|
|
253
257
|
export * from "./user-capacity.dto";
|
|
254
258
|
export * from "./user-daily-tabular-report.dto";
|
|
@@ -0,0 +1,16 @@
|
|
|
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 JiraTask model. Contains less information for representing in others APIs.
|
|
12
|
+
*/
|
|
13
|
+
export interface SimpleJiraTaskRequestDto {
|
|
14
|
+
key: string;
|
|
15
|
+
instance: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { PriorityEnumDto } from "./priority-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Simple serializer for Task model.
|
|
13
|
+
*/
|
|
14
|
+
export interface SimpleTaskRequestDto {
|
|
15
|
+
title: string;
|
|
16
|
+
priority: PriorityEnumDto;
|
|
17
|
+
project: number;
|
|
18
|
+
jira_link: number;
|
|
19
|
+
}
|
|
@@ -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 Job.
|
|
12
|
+
*/
|
|
13
|
+
export interface UpdateJobRequestDto {
|
|
14
|
+
is_billable: boolean;
|
|
15
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
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 { SimpleBranchDto } from "./simple-branch.dto";
|
|
12
|
+
import { JobTypeEnumDto } from "./job-type-enum.dto";
|
|
13
|
+
import { SimpleWorkTypeDto } from "./simple-work-type.dto";
|
|
14
|
+
import { SimpleDepartmentDto } from "./simple-department.dto";
|
|
15
|
+
import { SimpleTaskDto } from "./simple-task.dto";
|
|
16
|
+
/**
|
|
17
|
+
* Serializer for updating Job.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateJobDto {
|
|
20
|
+
readonly id: number;
|
|
21
|
+
readonly created: string;
|
|
22
|
+
readonly modified: string;
|
|
23
|
+
readonly date: string;
|
|
24
|
+
readonly type: JobTypeEnumDto;
|
|
25
|
+
readonly text: string;
|
|
26
|
+
readonly duration: number;
|
|
27
|
+
readonly task: number;
|
|
28
|
+
readonly work_type: number | null;
|
|
29
|
+
readonly branch: number | null;
|
|
30
|
+
readonly billed_by: number | null;
|
|
31
|
+
readonly created_by: number | null;
|
|
32
|
+
readonly updated_by: number | null;
|
|
33
|
+
is_billable: boolean;
|
|
34
|
+
readonly billed_by_data: SimpleUserDto | null;
|
|
35
|
+
readonly task_data: SimpleTaskDto;
|
|
36
|
+
readonly branch_data: SimpleBranchDto | null;
|
|
37
|
+
readonly work_type_data: SimpleWorkTypeDto | null;
|
|
38
|
+
readonly department_data: SimpleDepartmentDto | null;
|
|
39
|
+
readonly created_by_data: SimpleUserDto | null;
|
|
40
|
+
readonly updated_by_data: SimpleUserDto | null;
|
|
41
|
+
}
|
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.67",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.45)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|