@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.
Files changed (55) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +7 -1
  3. package/api/jira-compare-tasks-api.service.d.ts +77 -0
  4. package/api/jira-compare-tasks-api.serviceInterface.d.ts +58 -0
  5. package/api/jira-sync-issues-api.service.d.ts +56 -0
  6. package/api/jira-sync-issues-api.serviceInterface.d.ts +50 -0
  7. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +863 -13
  8. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  9. package/model/{state-enum.dto.d.ts → export-progress-state-enum.dto.d.ts} +1 -1
  10. package/model/export-progress.dto.d.ts +2 -2
  11. package/model/jira-compare-task-status-enum.dto.d.ts +19 -0
  12. package/model/jira-compare-task.dto.d.ts +29 -0
  13. package/model/jira-compare-tasks-list-created-by-error-component.dto.d.ts +26 -0
  14. package/model/jira-compare-tasks-list-created-by-in-error-component.dto.d.ts +26 -0
  15. package/model/jira-compare-tasks-list-error-response400.dto.d.ts +16 -0
  16. package/model/jira-compare-tasks-list-error.dto.d.ts +23 -0
  17. package/model/jira-compare-tasks-list-id-error-component.dto.d.ts +27 -0
  18. package/model/jira-compare-tasks-list-id-in-error-component.dto.d.ts +27 -0
  19. package/model/jira-compare-tasks-list-instance-error-component.dto.d.ts +26 -0
  20. package/model/jira-compare-tasks-list-instance-in-error-component.dto.d.ts +26 -0
  21. package/model/jira-compare-tasks-list-period-overlap-error-component.dto.d.ts +27 -0
  22. package/model/jira-compare-tasks-list-status-error-component.dto.d.ts +26 -0
  23. package/model/jira-compare-tasks-list-status-in-error-component.dto.d.ts +26 -0
  24. package/model/jira-compare-tasks-list-validation-error.dto.d.ts +15 -0
  25. package/model/jira-compare-tasks-start-tasks-create-error-response400.dto.d.ts +16 -0
  26. package/model/jira-compare-tasks-start-tasks-create-error.dto.d.ts +18 -0
  27. package/model/jira-compare-tasks-start-tasks-create-non-field-errors-error-component.dto.d.ts +27 -0
  28. package/model/jira-compare-tasks-start-tasks-create-period-end-error-component.dto.d.ts +28 -0
  29. package/model/jira-compare-tasks-start-tasks-create-period-non-field-errors-error-component.dto.d.ts +28 -0
  30. package/model/jira-compare-tasks-start-tasks-create-period-start-error-component.dto.d.ts +28 -0
  31. package/model/jira-compare-tasks-start-tasks-create-validation-error.dto.d.ts +15 -0
  32. package/model/jira-sync-issue-type-enum.dto.d.ts +21 -0
  33. package/model/jira-sync-issue.dto.d.ts +34 -0
  34. package/model/jira-sync-issues-list-compare-task-error-component.dto.d.ts +26 -0
  35. package/model/jira-sync-issues-list-compare-task-in-error-component.dto.d.ts +26 -0
  36. package/model/jira-sync-issues-list-error-response400.dto.d.ts +16 -0
  37. package/model/jira-sync-issues-list-error.dto.d.ts +24 -0
  38. package/model/jira-sync-issues-list-id-error-component.dto.d.ts +27 -0
  39. package/model/jira-sync-issues-list-id-in-error-component.dto.d.ts +27 -0
  40. package/model/jira-sync-issues-list-instance-error-component.dto.d.ts +26 -0
  41. package/model/jira-sync-issues-list-instance-in-error-component.dto.d.ts +26 -0
  42. package/model/jira-sync-issues-list-type-error-component.dto.d.ts +26 -0
  43. package/model/jira-sync-issues-list-type-in-error-component.dto.d.ts +26 -0
  44. package/model/jira-sync-issues-list-user-error-component.dto.d.ts +26 -0
  45. package/model/jira-sync-issues-list-user-in-error-component.dto.d.ts +26 -0
  46. package/model/jira-sync-issues-list-validation-error.dto.d.ts +15 -0
  47. package/model/models.d.ts +44 -1
  48. package/model/paginated-jira-compare-task-list.dto.d.ts +16 -0
  49. package/model/paginated-jira-sync-issue-list.dto.d.ts +16 -0
  50. package/model/simple-job.dto.d.ts +31 -0
  51. package/model/start-compare-tasks-request.dto.d.ts +16 -0
  52. package/model/task-progress-info.dto.d.ts +16 -0
  53. package/model/task-progress-state-enum.dto.d.ts +22 -0
  54. package/model/task-progress.dto.d.ts +18 -0
  55. package/package.json +2 -2
@@ -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 { JiraSyncIssuesListValidationErrorDto } from "./jira-sync-issues-list-validation-error.dto";
12
+ /**
13
+ * @type JiraSyncIssuesListErrorResponse400Dto
14
+ * @export
15
+ */
16
+ export type JiraSyncIssuesListErrorResponse400Dto = JiraSyncIssuesListValidationErrorDto | ParseErrorResponseDto;
@@ -0,0 +1,24 @@
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 { JiraSyncIssuesListTypeErrorComponentDto } from "./jira-sync-issues-list-type-error-component.dto";
11
+ import { JiraSyncIssuesListIdErrorComponentDto } from "./jira-sync-issues-list-id-error-component.dto";
12
+ import { JiraSyncIssuesListInstanceErrorComponentDto } from "./jira-sync-issues-list-instance-error-component.dto";
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
+ import { JiraSyncIssuesListTypeInErrorComponentDto } from "./jira-sync-issues-list-type-in-error-component.dto";
17
+ import { JiraSyncIssuesListInstanceInErrorComponentDto } from "./jira-sync-issues-list-instance-in-error-component.dto";
18
+ import { JiraSyncIssuesListUserInErrorComponentDto } from "./jira-sync-issues-list-user-in-error-component.dto";
19
+ import { JiraSyncIssuesListUserErrorComponentDto } from "./jira-sync-issues-list-user-error-component.dto";
20
+ /**
21
+ * @type JiraSyncIssuesListErrorDto
22
+ * @export
23
+ */
24
+ export type JiraSyncIssuesListErrorDto = JiraSyncIssuesListCompareTaskErrorComponentDto | JiraSyncIssuesListCompareTaskInErrorComponentDto | JiraSyncIssuesListIdErrorComponentDto | JiraSyncIssuesListIdInErrorComponentDto | JiraSyncIssuesListInstanceErrorComponentDto | JiraSyncIssuesListInstanceInErrorComponentDto | JiraSyncIssuesListTypeErrorComponentDto | JiraSyncIssuesListTypeInErrorComponentDto | JiraSyncIssuesListUserErrorComponentDto | JiraSyncIssuesListUserInErrorComponentDto;
@@ -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 JiraSyncIssuesListIdErrorComponentDto {
11
+ /**
12
+ * * `id` - id
13
+ */
14
+ attr: JiraSyncIssuesListIdErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: JiraSyncIssuesListIdErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListIdErrorComponentDtoAttrEnum {
22
+ Id = "id"
23
+ }
24
+ export declare enum JiraSyncIssuesListIdErrorComponentDtoCodeEnum {
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 JiraSyncIssuesListIdInErrorComponentDto {
11
+ /**
12
+ * * `id__in` - id__in
13
+ */
14
+ attr: JiraSyncIssuesListIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: JiraSyncIssuesListIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListIdInErrorComponentDtoAttrEnum {
22
+ IdIn = "id__in"
23
+ }
24
+ export declare enum JiraSyncIssuesListIdInErrorComponentDtoCodeEnum {
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 JiraSyncIssuesListInstanceErrorComponentDto {
11
+ /**
12
+ * * `instance` - instance
13
+ */
14
+ attr: JiraSyncIssuesListInstanceErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: JiraSyncIssuesListInstanceErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListInstanceErrorComponentDtoAttrEnum {
22
+ Instance = "instance"
23
+ }
24
+ export declare enum JiraSyncIssuesListInstanceErrorComponentDtoCodeEnum {
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 JiraSyncIssuesListInstanceInErrorComponentDto {
11
+ /**
12
+ * * `instance__in` - instance__in
13
+ */
14
+ attr: JiraSyncIssuesListInstanceInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: JiraSyncIssuesListInstanceInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListInstanceInErrorComponentDtoAttrEnum {
22
+ InstanceIn = "instance__in"
23
+ }
24
+ export declare enum JiraSyncIssuesListInstanceInErrorComponentDtoCodeEnum {
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 JiraSyncIssuesListTypeErrorComponentDto {
11
+ /**
12
+ * * `type` - type
13
+ */
14
+ attr: JiraSyncIssuesListTypeErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: JiraSyncIssuesListTypeErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListTypeErrorComponentDtoAttrEnum {
22
+ Type = "type"
23
+ }
24
+ export declare enum JiraSyncIssuesListTypeErrorComponentDtoCodeEnum {
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 JiraSyncIssuesListTypeInErrorComponentDto {
11
+ /**
12
+ * * `type__in` - type__in
13
+ */
14
+ attr: JiraSyncIssuesListTypeInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: JiraSyncIssuesListTypeInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListTypeInErrorComponentDtoAttrEnum {
22
+ TypeIn = "type__in"
23
+ }
24
+ export declare enum JiraSyncIssuesListTypeInErrorComponentDtoCodeEnum {
25
+ NullCharactersNotAllowed = "null_characters_not_allowed"
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 JiraSyncIssuesListUserErrorComponentDto {
11
+ /**
12
+ * * `user` - user
13
+ */
14
+ attr: JiraSyncIssuesListUserErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: JiraSyncIssuesListUserErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListUserErrorComponentDtoAttrEnum {
22
+ User = "user"
23
+ }
24
+ export declare enum JiraSyncIssuesListUserErrorComponentDtoCodeEnum {
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 JiraSyncIssuesListUserInErrorComponentDto {
11
+ /**
12
+ * * `user__in` - user__in
13
+ */
14
+ attr: JiraSyncIssuesListUserInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: JiraSyncIssuesListUserInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum JiraSyncIssuesListUserInErrorComponentDtoAttrEnum {
22
+ UserIn = "user__in"
23
+ }
24
+ export declare enum JiraSyncIssuesListUserInErrorComponentDtoCodeEnum {
25
+ InvalidChoice = "invalid_choice"
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 { JiraSyncIssuesListErrorDto } from "./jira-sync-issues-list-error.dto";
12
+ export interface JiraSyncIssuesListValidationErrorDto {
13
+ type: ValidationErrorEnumDto;
14
+ errors: Array<JiraSyncIssuesListErrorDto>;
15
+ }
package/model/models.d.ts CHANGED
@@ -632,6 +632,7 @@ export * from "./export-margin-report-start-create-file-format-error-component.d
632
632
  export * from "./export-margin-report-start-create-non-field-errors-error-component.dto";
633
633
  export * from "./export-margin-report-start-create-validation-error.dto";
634
634
  export * from "./export-progress.dto";
635
+ export * from "./export-progress-state-enum.dto";
635
636
  export * from "./export-project-notes-start-create-error.dto";
636
637
  export * from "./export-project-notes-start-create-error-response400.dto";
637
638
  export * from "./export-project-notes-start-create-file-format-error-component.dto";
@@ -692,7 +693,43 @@ export * from "./jira-client-create-project-create-lead-error-component.dto";
692
693
  export * from "./jira-client-create-project-create-non-field-errors-error-component.dto";
693
694
  export * from "./jira-client-create-project-create-project-name-error-component.dto";
694
695
  export * from "./jira-client-create-project-create-validation-error.dto";
696
+ export * from "./jira-compare-task.dto";
697
+ export * from "./jira-compare-task-status-enum.dto";
698
+ export * from "./jira-compare-tasks-list-created-by-error-component.dto";
699
+ export * from "./jira-compare-tasks-list-created-by-in-error-component.dto";
700
+ export * from "./jira-compare-tasks-list-error.dto";
701
+ export * from "./jira-compare-tasks-list-error-response400.dto";
702
+ export * from "./jira-compare-tasks-list-id-error-component.dto";
703
+ export * from "./jira-compare-tasks-list-id-in-error-component.dto";
704
+ export * from "./jira-compare-tasks-list-instance-error-component.dto";
705
+ export * from "./jira-compare-tasks-list-instance-in-error-component.dto";
706
+ export * from "./jira-compare-tasks-list-period-overlap-error-component.dto";
707
+ export * from "./jira-compare-tasks-list-status-error-component.dto";
708
+ export * from "./jira-compare-tasks-list-status-in-error-component.dto";
709
+ export * from "./jira-compare-tasks-list-validation-error.dto";
710
+ export * from "./jira-compare-tasks-start-tasks-create-error.dto";
711
+ export * from "./jira-compare-tasks-start-tasks-create-error-response400.dto";
712
+ export * from "./jira-compare-tasks-start-tasks-create-non-field-errors-error-component.dto";
713
+ export * from "./jira-compare-tasks-start-tasks-create-period-end-error-component.dto";
714
+ export * from "./jira-compare-tasks-start-tasks-create-period-non-field-errors-error-component.dto";
715
+ export * from "./jira-compare-tasks-start-tasks-create-period-start-error-component.dto";
716
+ export * from "./jira-compare-tasks-start-tasks-create-validation-error.dto";
695
717
  export * from "./jira-instance.dto";
718
+ export * from "./jira-sync-issue.dto";
719
+ export * from "./jira-sync-issue-type-enum.dto";
720
+ export * from "./jira-sync-issues-list-compare-task-error-component.dto";
721
+ export * from "./jira-sync-issues-list-compare-task-in-error-component.dto";
722
+ export * from "./jira-sync-issues-list-error.dto";
723
+ export * from "./jira-sync-issues-list-error-response400.dto";
724
+ export * from "./jira-sync-issues-list-id-error-component.dto";
725
+ export * from "./jira-sync-issues-list-id-in-error-component.dto";
726
+ export * from "./jira-sync-issues-list-instance-error-component.dto";
727
+ export * from "./jira-sync-issues-list-instance-in-error-component.dto";
728
+ export * from "./jira-sync-issues-list-type-error-component.dto";
729
+ export * from "./jira-sync-issues-list-type-in-error-component.dto";
730
+ export * from "./jira-sync-issues-list-user-error-component.dto";
731
+ export * from "./jira-sync-issues-list-user-in-error-component.dto";
732
+ export * from "./jira-sync-issues-list-validation-error.dto";
696
733
  export * from "./job.dto";
697
734
  export * from "./job-hourly-report-export-resource-create-export-job-request.dto";
698
735
  export * from "./job-report-data.dto";
@@ -987,7 +1024,9 @@ export * from "./paginated-department-job-hourly-report-list.dto";
987
1024
  export * from "./paginated-department-list.dto";
988
1025
  export * from "./paginated-dismissal-reason-list.dto";
989
1026
  export * from "./paginated-export-job-list.dto";
1027
+ export * from "./paginated-jira-compare-task-list.dto";
990
1028
  export * from "./paginated-jira-instance-list.dto";
1029
+ export * from "./paginated-jira-sync-issue-list.dto";
991
1030
  export * from "./paginated-job-list.dto";
992
1031
  export * from "./paginated-job-report-hourly-list.dto";
993
1032
  export * from "./paginated-location-list.dto";
@@ -1405,6 +1444,7 @@ export * from "./simple-jira-instance-request.dto";
1405
1444
  export * from "./simple-jira-project.dto";
1406
1445
  export * from "./simple-jira-project-request.dto";
1407
1446
  export * from "./simple-jira-task.dto";
1447
+ export * from "./simple-job.dto";
1408
1448
  export * from "./simple-location.dto";
1409
1449
  export * from "./simple-location-request.dto";
1410
1450
  export * from "./simple-project.dto";
@@ -1486,10 +1526,13 @@ export * from "./sso-start-create-error-response400.dto";
1486
1526
  export * from "./sso-start-create-non-field-errors-error-component.dto";
1487
1527
  export * from "./sso-start-create-redirect-uri-error-component.dto";
1488
1528
  export * from "./sso-start-create-validation-error.dto";
1489
- export * from "./state-enum.dto";
1529
+ export * from "./start-compare-tasks-request.dto";
1490
1530
  export * from "./task.dto";
1491
1531
  export * from "./task-hourly-report-export-resource-create-export-job-request.dto";
1492
1532
  export * from "./task-job-hourly-report.dto";
1533
+ export * from "./task-progress.dto";
1534
+ export * from "./task-progress-info.dto";
1535
+ export * from "./task-progress-state-enum.dto";
1493
1536
  export * from "./task-resource-create-export-job-request.dto";
1494
1537
  export * from "./task-stats.dto";
1495
1538
  export * from "./task-statuses.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
+ import { JiraCompareTaskDto } from "./jira-compare-task.dto";
11
+ export interface PaginatedJiraCompareTaskListDto {
12
+ count: number;
13
+ results: Array<JiraCompareTaskDto>;
14
+ next?: string | null;
15
+ previous?: string | null;
16
+ }
@@ -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 { JiraSyncIssueDto } from "./jira-sync-issue.dto";
11
+ export interface PaginatedJiraSyncIssueListDto {
12
+ count: number;
13
+ results: Array<JiraSyncIssueDto>;
14
+ next?: string | null;
15
+ previous?: string | null;
16
+ }
@@ -0,0 +1,31 @@
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 { JobTypeEnumDto } from "./job-type-enum.dto";
11
+ import { SimpleTaskDto } from "./simple-task.dto";
12
+ /**
13
+ * Serializer for Job model. Contains less information for representing in others APIs.
14
+ */
15
+ export interface SimpleJobDto {
16
+ readonly id: number;
17
+ readonly created: string;
18
+ readonly modified: string;
19
+ date: string;
20
+ type: JobTypeEnumDto;
21
+ text: string;
22
+ is_billable: boolean;
23
+ duration: number;
24
+ task: number;
25
+ readonly billed_by: number | null;
26
+ readonly created_by: number | null;
27
+ readonly updated_by: number | null;
28
+ readonly task_data: SimpleTaskDto;
29
+ work_type?: number | null;
30
+ branch?: number | null;
31
+ }
@@ -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 { DateRangeFieldRequestDto } from "./date-range-field-request.dto";
11
+ /**
12
+ * Serializer for starting jira compare tasks.
13
+ */
14
+ export interface StartCompareTasksRequestDto {
15
+ period: DateRangeFieldRequestDto;
16
+ }
@@ -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 to show progress info, like how much is done.
12
+ */
13
+ export interface TaskProgressInfoDto {
14
+ current: number;
15
+ total: number;
16
+ }
@@ -0,0 +1,22 @@
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 * `pending` - pending * `started` - started * `success` - success
12
+ */
13
+ export declare enum TaskProgressStateEnumDto {
14
+ Created = "created",
15
+ LoadingData = "loading_data",
16
+ ComparingData = "comparing_data",
17
+ Finished = "finished",
18
+ Failed = "failed",
19
+ Pending = "pending",
20
+ Started = "started",
21
+ Success = "success"
22
+ }
@@ -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 { TaskProgressStateEnumDto } from "./task-progress-state-enum.dto";
11
+ import { TaskProgressInfoDto } from "./task-progress-info.dto";
12
+ /**
13
+ * Serializer to show progress of job.
14
+ */
15
+ export interface TaskProgressDto {
16
+ state: TaskProgressStateEnumDto;
17
+ info: TaskProgressInfoDto | null;
18
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.1.31",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.24)",
3
+ "version": "0.1.33",
4
+ "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.25)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",