@saritasa/crm-delmar-core-sdk 0.0.262 → 0.0.263

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.
@@ -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";
@@ -12,4 +12,5 @@
12
12
  */
13
13
  export interface SimpleJiraInstanceRequestDto {
14
14
  name: string;
15
+ server?: string;
15
16
  }
@@ -12,5 +12,8 @@
12
12
  */
13
13
  export interface SimpleJiraInstanceDto {
14
14
  readonly id: number;
15
+ readonly created: string;
16
+ readonly modified: string;
15
17
  name: string;
18
+ server?: string;
16
19
  }
@@ -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
+ }
@@ -13,4 +13,5 @@
13
13
  export interface SimpleProjectRequestDto {
14
14
  name: string;
15
15
  client: number;
16
+ jira_link: number;
16
17
  }
@@ -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
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.262",
3
+ "version": "0.0.263",
4
4
  "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.135)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {