@saritasa/crm-delmar-core-sdk 0.0.262 → 0.0.264
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/fesm2022/saritasa-crm-delmar-core-sdk.mjs +142 -152
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/jira-instance.dto.d.ts +8 -0
- package/model/models.d.ts +1 -0
- package/model/simple-jira-instance-request.dto.d.ts +1 -0
- package/model/simple-jira-instance.dto.d.ts +3 -0
- package/model/simple-jira-task.dto.d.ts +21 -0
- package/model/simple-project-request.dto.d.ts +1 -0
- package/model/simple-project.dto.d.ts +3 -0
- package/model/simple-task.dto.d.ts +3 -0
- package/model/task.dto.d.ts +3 -0
- package/package.json +1 -1
|
@@ -12,5 +12,13 @@
|
|
|
12
12
|
*/
|
|
13
13
|
export interface JiraInstanceDto {
|
|
14
14
|
readonly id: number;
|
|
15
|
+
readonly created: string;
|
|
16
|
+
readonly modified: string;
|
|
15
17
|
name: string;
|
|
18
|
+
server?: string;
|
|
19
|
+
is_project_creation_allowed?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Usually it\'s instances used for debugging like saritasa-beta. Free tier has limited features.
|
|
22
|
+
*/
|
|
23
|
+
is_free_tier?: boolean;
|
|
16
24
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -1223,6 +1223,7 @@ export * from "./simple-jira-instance.dto";
|
|
|
1223
1223
|
export * from "./simple-jira-instance-request.dto";
|
|
1224
1224
|
export * from "./simple-jira-project.dto";
|
|
1225
1225
|
export * from "./simple-jira-project-request.dto";
|
|
1226
|
+
export * from "./simple-jira-task.dto";
|
|
1226
1227
|
export * from "./simple-location.dto";
|
|
1227
1228
|
export * from "./simple-location-request.dto";
|
|
1228
1229
|
export * from "./simple-project.dto";
|
|
@@ -0,0 +1,21 @@
|
|
|
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 { SimpleJiraInstanceDto } from "./simple-jira-instance.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for JiraTask model. Contains less information for representing in others APIs.
|
|
13
|
+
*/
|
|
14
|
+
export interface SimpleJiraTaskDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
key: string;
|
|
19
|
+
instance: number;
|
|
20
|
+
readonly instance_data: SimpleJiraInstanceDto;
|
|
21
|
+
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
10
11
|
/**
|
|
11
12
|
* Serializer for Project model.
|
|
12
13
|
*/
|
|
@@ -18,4 +19,6 @@ export interface SimpleProjectDto {
|
|
|
18
19
|
client: number;
|
|
19
20
|
readonly created_by: number | null;
|
|
20
21
|
readonly updated_by: number | null;
|
|
22
|
+
jira_link: number;
|
|
23
|
+
readonly jira_link_data: SimpleJiraProjectDto;
|
|
21
24
|
}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleProjectDto } from "./simple-project.dto";
|
|
11
|
+
import { SimpleJiraTaskDto } from "./simple-jira-task.dto";
|
|
11
12
|
import { PriorityEnumDto } from "./priority-enum.dto";
|
|
12
13
|
/**
|
|
13
14
|
* Simple serializer for Task model.
|
|
@@ -20,4 +21,6 @@ export interface SimpleTaskDto {
|
|
|
20
21
|
priority: PriorityEnumDto;
|
|
21
22
|
project: number;
|
|
22
23
|
readonly project_data: SimpleProjectDto;
|
|
24
|
+
jira_link: number;
|
|
25
|
+
readonly jira_link_data: SimpleJiraTaskDto;
|
|
23
26
|
}
|
package/model/task.dto.d.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
11
11
|
import { SimpleProjectDto } from "./simple-project.dto";
|
|
12
12
|
import { SimpleComponentDto } from "./simple-component.dto";
|
|
13
|
+
import { SimpleJiraTaskDto } from "./simple-jira-task.dto";
|
|
13
14
|
import { PriorityEnumDto } from "./priority-enum.dto";
|
|
14
15
|
import { SimpleSprintDto } from "./simple-sprint.dto";
|
|
15
16
|
/**
|
|
@@ -34,6 +35,8 @@ export interface TaskDto {
|
|
|
34
35
|
readonly created_by_data: SimpleUserDto;
|
|
35
36
|
readonly updated_by: number | null;
|
|
36
37
|
readonly updated_by_data: SimpleUserDto;
|
|
38
|
+
jira_link: number;
|
|
39
|
+
readonly jira_link_data: SimpleJiraTaskDto;
|
|
37
40
|
readonly billable_jobs_count: number;
|
|
38
41
|
readonly unbillable_jobs_count: number;
|
|
39
42
|
readonly billable_duration: number;
|
package/package.json
CHANGED