@saritasa/crm-delmar-core-sdk 0.1.35 → 0.1.37
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-compare-tasks-api.serviceInterface.d.ts +1 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +6 -4
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/jira-compare-task-status-enum.dto.d.ts +3 -2
- package/model/jira-sync-issue.dto.d.ts +3 -3
- package/model/task-progress-state-enum.dto.d.ts +3 -2
- package/package.json +1 -1
|
@@ -8,12 +8,13 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `created` - Created * `loading_data` - Loading data * `
|
|
11
|
+
* * `created` - Created * `loading_data` - Loading data * `comparing_data_jira_to_delmar` - Comparing data Jira to Delmar * `comparing_data_delmar_to_jira` - Comparing data Delmar to Jira * `finished` - Finished * `failed` - Failed
|
|
12
12
|
*/
|
|
13
13
|
export declare enum JiraCompareTaskStatusEnumDto {
|
|
14
14
|
Created = "created",
|
|
15
15
|
LoadingData = "loading_data",
|
|
16
|
-
|
|
16
|
+
ComparingDataJiraToDelmar = "comparing_data_jira_to_delmar",
|
|
17
|
+
ComparingDataDelmarToJira = "comparing_data_delmar_to_jira",
|
|
17
18
|
Finished = "finished",
|
|
18
19
|
Failed = "failed"
|
|
19
20
|
}
|
|
@@ -20,9 +20,9 @@ export interface JiraSyncIssueDto {
|
|
|
20
20
|
readonly modified: string;
|
|
21
21
|
type: JiraSyncIssueTypeEnumDto;
|
|
22
22
|
instance: number;
|
|
23
|
-
readonly tempo_date: string;
|
|
24
|
-
readonly tempo_duration: number;
|
|
25
|
-
readonly tempo_description: string;
|
|
23
|
+
readonly tempo_date: string | null;
|
|
24
|
+
readonly tempo_duration: number | null;
|
|
25
|
+
readonly tempo_description: string | null;
|
|
26
26
|
readonly instance_data: SimpleJiraInstanceDto;
|
|
27
27
|
readonly job_data: SimpleJobDto | null;
|
|
28
28
|
readonly user_data: SimpleUserDto | null;
|
|
@@ -8,12 +8,13 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `created` - created * `loading_data` - loading_data * `
|
|
11
|
+
* * `created` - created * `loading_data` - loading_data * `comparing_data_jira_to_delmar` - comparing_data_jira_to_delmar * `comparing_data_delmar_to_jira` - comparing_data_delmar_to_jira * `finished` - finished * `failed` - failed * `pending` - pending * `started` - started * `success` - success
|
|
12
12
|
*/
|
|
13
13
|
export declare enum TaskProgressStateEnumDto {
|
|
14
14
|
Created = "created",
|
|
15
15
|
LoadingData = "loading_data",
|
|
16
|
-
|
|
16
|
+
ComparingDataJiraToDelmar = "comparing_data_jira_to_delmar",
|
|
17
|
+
ComparingDataDelmarToJira = "comparing_data_delmar_to_jira",
|
|
17
18
|
Finished = "finished",
|
|
18
19
|
Failed = "failed",
|
|
19
20
|
Pending = "pending",
|
package/package.json
CHANGED