@saritasa/crm-delmar-core-sdk 0.1.31 → 0.1.33
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/api.d.ts +7 -1
- package/api/jira-compare-tasks-api.service.d.ts +77 -0
- package/api/jira-compare-tasks-api.serviceInterface.d.ts +58 -0
- package/api/jira-sync-issues-api.service.d.ts +56 -0
- package/api/jira-sync-issues-api.serviceInterface.d.ts +50 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +863 -13
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/{state-enum.dto.d.ts → export-progress-state-enum.dto.d.ts} +1 -1
- package/model/export-progress.dto.d.ts +2 -2
- package/model/jira-compare-task-status-enum.dto.d.ts +19 -0
- package/model/jira-compare-task.dto.d.ts +29 -0
- package/model/jira-compare-tasks-list-created-by-error-component.dto.d.ts +26 -0
- package/model/jira-compare-tasks-list-created-by-in-error-component.dto.d.ts +26 -0
- package/model/jira-compare-tasks-list-error-response400.dto.d.ts +16 -0
- package/model/jira-compare-tasks-list-error.dto.d.ts +23 -0
- package/model/jira-compare-tasks-list-id-error-component.dto.d.ts +27 -0
- package/model/jira-compare-tasks-list-id-in-error-component.dto.d.ts +27 -0
- package/model/jira-compare-tasks-list-instance-error-component.dto.d.ts +26 -0
- package/model/jira-compare-tasks-list-instance-in-error-component.dto.d.ts +26 -0
- package/model/jira-compare-tasks-list-period-overlap-error-component.dto.d.ts +27 -0
- package/model/jira-compare-tasks-list-status-error-component.dto.d.ts +26 -0
- package/model/jira-compare-tasks-list-status-in-error-component.dto.d.ts +26 -0
- package/model/jira-compare-tasks-list-validation-error.dto.d.ts +15 -0
- package/model/jira-compare-tasks-start-tasks-create-error-response400.dto.d.ts +16 -0
- package/model/jira-compare-tasks-start-tasks-create-error.dto.d.ts +18 -0
- package/model/jira-compare-tasks-start-tasks-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/jira-compare-tasks-start-tasks-create-period-end-error-component.dto.d.ts +28 -0
- package/model/jira-compare-tasks-start-tasks-create-period-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/jira-compare-tasks-start-tasks-create-period-start-error-component.dto.d.ts +28 -0
- package/model/jira-compare-tasks-start-tasks-create-validation-error.dto.d.ts +15 -0
- package/model/jira-sync-issue-type-enum.dto.d.ts +21 -0
- package/model/jira-sync-issue.dto.d.ts +34 -0
- package/model/jira-sync-issues-list-compare-task-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-compare-task-in-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-error-response400.dto.d.ts +16 -0
- package/model/jira-sync-issues-list-error.dto.d.ts +24 -0
- package/model/jira-sync-issues-list-id-error-component.dto.d.ts +27 -0
- package/model/jira-sync-issues-list-id-in-error-component.dto.d.ts +27 -0
- package/model/jira-sync-issues-list-instance-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-instance-in-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-type-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-type-in-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-user-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-user-in-error-component.dto.d.ts +26 -0
- package/model/jira-sync-issues-list-validation-error.dto.d.ts +15 -0
- package/model/models.d.ts +44 -1
- package/model/paginated-jira-compare-task-list.dto.d.ts +16 -0
- package/model/paginated-jira-sync-issue-list.dto.d.ts +16 -0
- package/model/simple-job.dto.d.ts +31 -0
- package/model/start-compare-tasks-request.dto.d.ts +16 -0
- package/model/task-progress-info.dto.d.ts +16 -0
- package/model/task-progress-state-enum.dto.d.ts +22 -0
- package/model/task-progress.dto.d.ts +18 -0
- package/package.json +2 -2
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
/**
|
|
11
11
|
* * `CREATED` - CREATED * `EXPORTING` - EXPORTING * `EXPORT_ERROR` - EXPORT_ERROR * `EXPORTED` - EXPORTED * `CANCELLED` - CANCELLED * `PENDING` - PENDING * `STARTED` - STARTED * `SUCCESS` - SUCCESS
|
|
12
12
|
*/
|
|
13
|
-
export declare enum
|
|
13
|
+
export declare enum ExportProgressStateEnumDto {
|
|
14
14
|
Created = "CREATED",
|
|
15
15
|
Exporting = "EXPORTING",
|
|
16
16
|
ExportError = "EXPORT_ERROR",
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { ExportProgressStateEnumDto } from "./export-progress-state-enum.dto";
|
|
11
11
|
import { ProgressInfoDto } from "./progress-info.dto";
|
|
12
12
|
/**
|
|
13
13
|
* Serializer to show ExportJob progress.
|
|
14
14
|
*/
|
|
15
15
|
export interface ExportProgressDto {
|
|
16
16
|
info: ProgressInfoDto;
|
|
17
|
-
state:
|
|
17
|
+
state: ExportProgressStateEnumDto;
|
|
18
18
|
}
|
|
@@ -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
|
+
/**
|
|
11
|
+
* * `created` - Created * `loading_data` - Loading data * `comparing_data` - Comparing data * `finished` - Finished * `failed` - Failed
|
|
12
|
+
*/
|
|
13
|
+
export declare enum JiraCompareTaskStatusEnumDto {
|
|
14
|
+
Created = "created",
|
|
15
|
+
LoadingData = "loading_data",
|
|
16
|
+
ComparingData = "comparing_data",
|
|
17
|
+
Finished = "finished",
|
|
18
|
+
Failed = "failed"
|
|
19
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { DateRangeFieldDto } from "./date-range-field.dto";
|
|
11
|
+
import { SimpleUserDto } from "./simple-user.dto";
|
|
12
|
+
import { TaskProgressDto } from "./task-progress.dto";
|
|
13
|
+
import { SimpleJiraInstanceDto } from "./simple-jira-instance.dto";
|
|
14
|
+
import { JiraCompareTaskStatusEnumDto } from "./jira-compare-task-status-enum.dto";
|
|
15
|
+
/**
|
|
16
|
+
* Serializer for JiraCompareTask model.
|
|
17
|
+
*/
|
|
18
|
+
export interface JiraCompareTaskDto {
|
|
19
|
+
readonly id: number;
|
|
20
|
+
readonly created: string;
|
|
21
|
+
readonly modified: string;
|
|
22
|
+
progress: TaskProgressDto | null;
|
|
23
|
+
period: DateRangeFieldDto;
|
|
24
|
+
instance: number;
|
|
25
|
+
created_by: number;
|
|
26
|
+
readonly instance_data: SimpleJiraInstanceDto;
|
|
27
|
+
readonly created_by_data: SimpleUserDto;
|
|
28
|
+
status?: JiraCompareTaskStatusEnumDto;
|
|
29
|
+
}
|
|
@@ -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 JiraCompareTasksListCreatedByErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `created_by` - created_by
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListCreatedByErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListCreatedByErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListCreatedByErrorComponentDtoAttrEnum {
|
|
22
|
+
CreatedBy = "created_by"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListCreatedByErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
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 JiraCompareTasksListCreatedByInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `created_by__in` - created_by__in
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListCreatedByInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListCreatedByInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListCreatedByInErrorComponentDtoAttrEnum {
|
|
22
|
+
CreatedByIn = "created_by__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListCreatedByInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -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
|
+
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { JiraCompareTasksListValidationErrorDto } from "./jira-compare-tasks-list-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type JiraCompareTasksListErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type JiraCompareTasksListErrorResponse400Dto = JiraCompareTasksListValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 { JiraCompareTasksListInstanceErrorComponentDto } from "./jira-compare-tasks-list-instance-error-component.dto";
|
|
11
|
+
import { JiraCompareTasksListPeriodOverlapErrorComponentDto } from "./jira-compare-tasks-list-period-overlap-error-component.dto";
|
|
12
|
+
import { JiraCompareTasksListCreatedByErrorComponentDto } from "./jira-compare-tasks-list-created-by-error-component.dto";
|
|
13
|
+
import { JiraCompareTasksListIdInErrorComponentDto } from "./jira-compare-tasks-list-id-in-error-component.dto";
|
|
14
|
+
import { JiraCompareTasksListIdErrorComponentDto } from "./jira-compare-tasks-list-id-error-component.dto";
|
|
15
|
+
import { JiraCompareTasksListStatusErrorComponentDto } from "./jira-compare-tasks-list-status-error-component.dto";
|
|
16
|
+
import { JiraCompareTasksListInstanceInErrorComponentDto } from "./jira-compare-tasks-list-instance-in-error-component.dto";
|
|
17
|
+
import { JiraCompareTasksListCreatedByInErrorComponentDto } from "./jira-compare-tasks-list-created-by-in-error-component.dto";
|
|
18
|
+
import { JiraCompareTasksListStatusInErrorComponentDto } from "./jira-compare-tasks-list-status-in-error-component.dto";
|
|
19
|
+
/**
|
|
20
|
+
* @type JiraCompareTasksListErrorDto
|
|
21
|
+
* @export
|
|
22
|
+
*/
|
|
23
|
+
export type JiraCompareTasksListErrorDto = JiraCompareTasksListCreatedByErrorComponentDto | JiraCompareTasksListCreatedByInErrorComponentDto | JiraCompareTasksListIdErrorComponentDto | JiraCompareTasksListIdInErrorComponentDto | JiraCompareTasksListInstanceErrorComponentDto | JiraCompareTasksListInstanceInErrorComponentDto | JiraCompareTasksListPeriodOverlapErrorComponentDto | JiraCompareTasksListStatusErrorComponentDto | JiraCompareTasksListStatusInErrorComponentDto;
|
|
@@ -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 JiraCompareTasksListIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id` - id
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListIdErrorComponentDtoAttrEnum {
|
|
22
|
+
Id = "id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListIdErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -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 JiraCompareTasksListIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListIdInErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -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 JiraCompareTasksListInstanceErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `instance` - instance
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListInstanceErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListInstanceErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListInstanceErrorComponentDtoAttrEnum {
|
|
22
|
+
Instance = "instance"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListInstanceErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
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 JiraCompareTasksListInstanceInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `instance__in` - instance__in
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListInstanceInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListInstanceInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListInstanceInErrorComponentDtoAttrEnum {
|
|
22
|
+
InstanceIn = "instance__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListInstanceInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
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 JiraCompareTasksListPeriodOverlapErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period__overlap` - period__overlap
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListPeriodOverlapErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListPeriodOverlapErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListPeriodOverlapErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodOverlap = "period__overlap"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListPeriodOverlapErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
27
|
+
}
|
|
@@ -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 JiraCompareTasksListStatusErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status` - status
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListStatusErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListStatusErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListStatusErrorComponentDtoAttrEnum {
|
|
22
|
+
Status = "status"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListStatusErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
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 JiraCompareTasksListStatusInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status__in` - status__in
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksListStatusInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksListStatusInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksListStatusInErrorComponentDtoAttrEnum {
|
|
22
|
+
StatusIn = "status__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksListStatusInErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
26
|
+
}
|
|
@@ -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
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
11
|
+
import { JiraCompareTasksListErrorDto } from "./jira-compare-tasks-list-error.dto";
|
|
12
|
+
export interface JiraCompareTasksListValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<JiraCompareTasksListErrorDto>;
|
|
15
|
+
}
|
|
@@ -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
|
+
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { JiraCompareTasksStartTasksCreateValidationErrorDto } from "./jira-compare-tasks-start-tasks-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type JiraCompareTasksStartTasksCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type JiraCompareTasksStartTasksCreateErrorResponse400Dto = JiraCompareTasksStartTasksCreateValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDto } from "./jira-compare-tasks-start-tasks-create-period-non-field-errors-error-component.dto";
|
|
11
|
+
import { JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDto } from "./jira-compare-tasks-start-tasks-create-period-end-error-component.dto";
|
|
12
|
+
import { JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDto } from "./jira-compare-tasks-start-tasks-create-period-start-error-component.dto";
|
|
13
|
+
import { JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDto } from "./jira-compare-tasks-start-tasks-create-non-field-errors-error-component.dto";
|
|
14
|
+
/**
|
|
15
|
+
* @type JiraCompareTasksStartTasksCreateErrorDto
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export type JiraCompareTasksStartTasksCreateErrorDto = JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDto | JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDto | JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDto | JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDto;
|
|
@@ -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 JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksStartTasksCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period.end` - period.end
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `datetime` - datetime * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodEnd = "period.end"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksStartTasksCreatePeriodEndErrorComponentDtoCodeEnum {
|
|
25
|
+
Datetime = "datetime",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
package/model/jira-compare-tasks-start-tasks-create-period-non-field-errors-error-component.dto.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
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 JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period.non_field_errors` - period.non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodNonFieldErrors = "period.non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksStartTasksCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period.start` - period.start
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `datetime` - datetime * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodStart = "period.start"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraCompareTasksStartTasksCreatePeriodStartErrorComponentDtoCodeEnum {
|
|
25
|
+
Datetime = "datetime",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -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
|
+
import { JiraCompareTasksStartTasksCreateErrorDto } from "./jira-compare-tasks-start-tasks-create-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface JiraCompareTasksStartTasksCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<JiraCompareTasksStartTasksCreateErrorDto>;
|
|
15
|
+
}
|
|
@@ -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
|
+
/**
|
|
11
|
+
* * `jira_task_missing` - Jira Task Missing * `jira_job_missing` - Jira Job Missing * `delmar_task_missing` - Delmar Task Missing * `delmar_job_missing` - Delmar Job Missing * `date_mismatch` - Date Mismatch * `text_mismatch` - Text Mismatch * `duration_mismatch` - Duration Mismatch
|
|
12
|
+
*/
|
|
13
|
+
export declare enum JiraSyncIssueTypeEnumDto {
|
|
14
|
+
JiraTaskMissing = "jira_task_missing",
|
|
15
|
+
JiraJobMissing = "jira_job_missing",
|
|
16
|
+
DelmarTaskMissing = "delmar_task_missing",
|
|
17
|
+
DelmarJobMissing = "delmar_job_missing",
|
|
18
|
+
DateMismatch = "date_mismatch",
|
|
19
|
+
TextMismatch = "text_mismatch",
|
|
20
|
+
DurationMismatch = "duration_mismatch"
|
|
21
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { SimpleJiraInstanceDto } from "./simple-jira-instance.dto";
|
|
12
|
+
import { SimpleJobDto } from "./simple-job.dto";
|
|
13
|
+
import { JiraSyncIssueTypeEnumDto } from "./jira-sync-issue-type-enum.dto";
|
|
14
|
+
/**
|
|
15
|
+
* Serializer for JiraSyncIssue model.
|
|
16
|
+
*/
|
|
17
|
+
export interface JiraSyncIssueDto {
|
|
18
|
+
readonly id: number;
|
|
19
|
+
readonly created: string;
|
|
20
|
+
readonly modified: string;
|
|
21
|
+
type: JiraSyncIssueTypeEnumDto;
|
|
22
|
+
instance: number;
|
|
23
|
+
readonly tempo_date: string;
|
|
24
|
+
readonly tempo_duration: number;
|
|
25
|
+
readonly tempo_description: string;
|
|
26
|
+
readonly instance_data: SimpleJiraInstanceDto;
|
|
27
|
+
readonly job_data: SimpleJobDto | null;
|
|
28
|
+
readonly user_data: SimpleUserDto | null;
|
|
29
|
+
is_resolved?: boolean;
|
|
30
|
+
job?: number | null;
|
|
31
|
+
user?: number | null;
|
|
32
|
+
jira_issue_key?: string | null;
|
|
33
|
+
jira_worklog_key?: string | null;
|
|
34
|
+
}
|
|
@@ -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 JiraSyncIssuesListCompareTaskErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `compare_task` - compare_task
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraSyncIssuesListCompareTaskErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraSyncIssuesListCompareTaskErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraSyncIssuesListCompareTaskErrorComponentDtoAttrEnum {
|
|
22
|
+
CompareTask = "compare_task"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraSyncIssuesListCompareTaskErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
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 JiraSyncIssuesListCompareTaskInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `compare_task__in` - compare_task__in
|
|
13
|
+
*/
|
|
14
|
+
attr: JiraSyncIssuesListCompareTaskInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: JiraSyncIssuesListCompareTaskInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum JiraSyncIssuesListCompareTaskInErrorComponentDtoAttrEnum {
|
|
22
|
+
CompareTaskIn = "compare_task__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum JiraSyncIssuesListCompareTaskInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|