@saritasa/crm-delmar-core-sdk 0.1.36 → 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/model/jira-sync-issue.dto.d.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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;
|
package/package.json
CHANGED