@saritasa/crm-delmar-core-sdk 0.1.43 → 0.1.45
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/jira-client-api.service.d.ts +4 -4
- package/api/jira-client-api.serviceInterface.d.ts +2 -2
- package/api/jira-sync-issues-api.serviceInterface.d.ts +3 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +74 -11
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/jira-sync-issue.dto.d.ts +25 -0
- package/model/jira-sync-issues-list-date-gte-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-date-lte-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-date-range-error-component.dto.d.ts +27 -0
- package/model/jira-sync-issues-list-error.dto.d.ts +7 -4
- package/model/models.d.ts +4 -1
- package/model/{create-jira-project.dto.d.ts → project-creation-response.dto.d.ts} +3 -5
- package/package.json +2 -2
|
@@ -20,8 +20,33 @@ export interface JiraSyncIssueDto {
|
|
|
20
20
|
readonly modified: string;
|
|
21
21
|
type: JiraSyncIssueTypeEnumDto;
|
|
22
22
|
instance: number;
|
|
23
|
+
/**
|
|
24
|
+
* Date of the worklog in Tempo or in Delmar.
|
|
25
|
+
*/
|
|
26
|
+
date: string;
|
|
27
|
+
/**
|
|
28
|
+
* Get url to task.
|
|
29
|
+
*/
|
|
30
|
+
readonly jira_task_url: string | null;
|
|
31
|
+
/**
|
|
32
|
+
* Load Jira worklog URL.
|
|
33
|
+
*/
|
|
34
|
+
readonly jira_worklog_url: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Load tempo worklog URL.
|
|
37
|
+
*/
|
|
38
|
+
readonly tempo_worklog_url: string | null;
|
|
39
|
+
/**
|
|
40
|
+
* Load tempo date.
|
|
41
|
+
*/
|
|
23
42
|
readonly tempo_date: string | null;
|
|
43
|
+
/**
|
|
44
|
+
* Load tempo duration.
|
|
45
|
+
*/
|
|
24
46
|
readonly tempo_duration: number | null;
|
|
47
|
+
/**
|
|
48
|
+
* Load tempo description.
|
|
49
|
+
*/
|
|
25
50
|
readonly tempo_description: string | null;
|
|
26
51
|
readonly instance_data: SimpleJiraInstanceDto;
|
|
27
52
|
readonly job_data: SimpleJobDto | null;
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface JiraSyncIssuesListDateGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `date__gte` - date__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraSyncIssuesListDateGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: JiraSyncIssuesListDateGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraSyncIssuesListDateGteErrorComponentDtoAttrEnum {
|
|
22
|
+
DateGte = "date__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraSyncIssuesListDateGteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface JiraSyncIssuesListDateLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `date__lte` - date__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraSyncIssuesListDateLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: JiraSyncIssuesListDateLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraSyncIssuesListDateLteErrorComponentDtoAttrEnum {
|
|
22
|
+
DateLte = "date__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraSyncIssuesListDateLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -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
|
+
export interface JiraSyncIssuesListDateRangeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `date__range` - date__range
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraSyncIssuesListDateRangeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `invalid_values` - invalid_values
|
|
17
|
+
*/
|
|
18
|
+
code: JiraSyncIssuesListDateRangeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraSyncIssuesListDateRangeErrorComponentDtoAttrEnum {
|
|
22
|
+
DateRange = "date__range"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraSyncIssuesListDateRangeErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
InvalidValues = "invalid_values"
|
|
27
|
+
}
|
|
@@ -7,18 +7,21 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import { JiraSyncIssuesListTypeErrorComponentDto } from "./jira-sync-issues-list-type-error-component.dto";
|
|
11
10
|
import { JiraSyncIssuesListIdErrorComponentDto } from "./jira-sync-issues-list-id-error-component.dto";
|
|
11
|
+
import { JiraSyncIssuesListDateGteErrorComponentDto } from "./jira-sync-issues-list-date-gte-error-component.dto";
|
|
12
12
|
import { JiraSyncIssuesListInstanceErrorComponentDto } from "./jira-sync-issues-list-instance-error-component.dto";
|
|
13
13
|
import { JiraSyncIssuesListCompareTaskInErrorComponentDto } from "./jira-sync-issues-list-compare-task-in-error-component.dto";
|
|
14
|
-
import { JiraSyncIssuesListIdInErrorComponentDto } from "./jira-sync-issues-list-id-in-error-component.dto";
|
|
15
|
-
import { JiraSyncIssuesListCompareTaskErrorComponentDto } from "./jira-sync-issues-list-compare-task-error-component.dto";
|
|
16
14
|
import { JiraSyncIssuesListTypeInErrorComponentDto } from "./jira-sync-issues-list-type-in-error-component.dto";
|
|
15
|
+
import { JiraSyncIssuesListDateLteErrorComponentDto } from "./jira-sync-issues-list-date-lte-error-component.dto";
|
|
17
16
|
import { JiraSyncIssuesListInstanceInErrorComponentDto } from "./jira-sync-issues-list-instance-in-error-component.dto";
|
|
18
17
|
import { JiraSyncIssuesListUserInErrorComponentDto } from "./jira-sync-issues-list-user-in-error-component.dto";
|
|
18
|
+
import { JiraSyncIssuesListTypeErrorComponentDto } from "./jira-sync-issues-list-type-error-component.dto";
|
|
19
|
+
import { JiraSyncIssuesListDateRangeErrorComponentDto } from "./jira-sync-issues-list-date-range-error-component.dto";
|
|
20
|
+
import { JiraSyncIssuesListIdInErrorComponentDto } from "./jira-sync-issues-list-id-in-error-component.dto";
|
|
21
|
+
import { JiraSyncIssuesListCompareTaskErrorComponentDto } from "./jira-sync-issues-list-compare-task-error-component.dto";
|
|
19
22
|
import { JiraSyncIssuesListUserErrorComponentDto } from "./jira-sync-issues-list-user-error-component.dto";
|
|
20
23
|
/**
|
|
21
24
|
* @type JiraSyncIssuesListErrorDto
|
|
22
25
|
* @export
|
|
23
26
|
*/
|
|
24
|
-
export type JiraSyncIssuesListErrorDto = JiraSyncIssuesListCompareTaskErrorComponentDto | JiraSyncIssuesListCompareTaskInErrorComponentDto | JiraSyncIssuesListIdErrorComponentDto | JiraSyncIssuesListIdInErrorComponentDto | JiraSyncIssuesListInstanceErrorComponentDto | JiraSyncIssuesListInstanceInErrorComponentDto | JiraSyncIssuesListTypeErrorComponentDto | JiraSyncIssuesListTypeInErrorComponentDto | JiraSyncIssuesListUserErrorComponentDto | JiraSyncIssuesListUserInErrorComponentDto;
|
|
27
|
+
export type JiraSyncIssuesListErrorDto = JiraSyncIssuesListCompareTaskErrorComponentDto | JiraSyncIssuesListCompareTaskInErrorComponentDto | JiraSyncIssuesListDateGteErrorComponentDto | JiraSyncIssuesListDateLteErrorComponentDto | JiraSyncIssuesListDateRangeErrorComponentDto | JiraSyncIssuesListIdErrorComponentDto | JiraSyncIssuesListIdInErrorComponentDto | JiraSyncIssuesListInstanceErrorComponentDto | JiraSyncIssuesListInstanceInErrorComponentDto | JiraSyncIssuesListTypeErrorComponentDto | JiraSyncIssuesListTypeInErrorComponentDto | JiraSyncIssuesListUserErrorComponentDto | JiraSyncIssuesListUserInErrorComponentDto;
|
package/model/models.d.ts
CHANGED
|
@@ -462,7 +462,6 @@ export * from "./components-task-reports-list-task-search-error-component.dto";
|
|
|
462
462
|
export * from "./components-task-reports-list-task-status-in-error-component.dto";
|
|
463
463
|
export * from "./components-task-reports-list-validation-error.dto";
|
|
464
464
|
export * from "./config-enum.dto";
|
|
465
|
-
export * from "./create-jira-project.dto";
|
|
466
465
|
export * from "./create-jira-project-request.dto";
|
|
467
466
|
export * from "./date-range-field.dto";
|
|
468
467
|
export * from "./date-range-field-request.dto";
|
|
@@ -698,6 +697,9 @@ export * from "./jira-sync-issue.dto";
|
|
|
698
697
|
export * from "./jira-sync-issue-type-enum.dto";
|
|
699
698
|
export * from "./jira-sync-issues-list-compare-task-error-component.dto";
|
|
700
699
|
export * from "./jira-sync-issues-list-compare-task-in-error-component.dto";
|
|
700
|
+
export * from "./jira-sync-issues-list-date-gte-error-component.dto";
|
|
701
|
+
export * from "./jira-sync-issues-list-date-lte-error-component.dto";
|
|
702
|
+
export * from "./jira-sync-issues-list-date-range-error-component.dto";
|
|
701
703
|
export * from "./jira-sync-issues-list-error.dto";
|
|
702
704
|
export * from "./jira-sync-issues-list-error-response400.dto";
|
|
703
705
|
export * from "./jira-sync-issues-list-id-error-component.dto";
|
|
@@ -1176,6 +1178,7 @@ export * from "./profile-update-updated-by-error-component.dto";
|
|
|
1176
1178
|
export * from "./profile-update-validation-error.dto";
|
|
1177
1179
|
export * from "./progress-info.dto";
|
|
1178
1180
|
export * from "./project-component-hourly-report-export-resource-create-export-job-request.dto";
|
|
1181
|
+
export * from "./project-creation-response.dto";
|
|
1179
1182
|
export * from "./project-department-hourly-report-export-resource-create-export-job-request.dto";
|
|
1180
1183
|
export * from "./project.dto";
|
|
1181
1184
|
export * from "./project-job-hourly-report-export-resource-create-export-job-request.dto";
|
|
@@ -8,10 +8,8 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Representation of jira project creation response.
|
|
12
12
|
*/
|
|
13
|
-
export interface
|
|
14
|
-
|
|
15
|
-
project_name: string;
|
|
16
|
-
lead: string;
|
|
13
|
+
export interface ProjectCreationResponseDto {
|
|
14
|
+
jira_key: string;
|
|
17
15
|
}
|
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.45",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.32)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|