@saritasa/crm-delmar-core-sdk 0.0.275 → 0.0.277

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.
@@ -18,5 +18,4 @@ export interface ComponentJobHourlyReportDto {
18
18
  readonly billable_duration: number;
19
19
  readonly unbillable_duration: number;
20
20
  readonly total_duration: number;
21
- readonly jobs_count: number;
22
21
  }
@@ -18,7 +18,6 @@ export interface DepartmentJobHourlyReportDto {
18
18
  readonly billable_duration: number;
19
19
  readonly unbillable_duration: number;
20
20
  readonly total_duration: number;
21
- readonly jobs_count: number;
22
21
  is_active?: boolean;
23
22
  color?: string;
24
23
  }
package/model/models.d.ts CHANGED
@@ -871,6 +871,7 @@ export * from "./paginated-work-type-list.dto";
871
871
  export * from "./parse-error-code-enum.dto";
872
872
  export * from "./parse-error.dto";
873
873
  export * from "./parse-error-response.dto";
874
+ export * from "./period-approver.dto";
874
875
  export * from "./period.dto";
875
876
  export * from "./period-model-enum.dto";
876
877
  export * from "./period-type-enum.dto";
@@ -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 { PeriodUserDto } from "./period-user.dto";
11
+ import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
12
+ /**
13
+ * UserPeriodApprover representation in period.
14
+ */
15
+ export interface PeriodApproverDto {
16
+ readonly id: number;
17
+ readonly created: string;
18
+ readonly modified: string;
19
+ approver: number;
20
+ readonly approver_data: PeriodUserDto;
21
+ status: UserPeriodStatusEnumDto;
22
+ status_updated?: string | null;
23
+ comment?: string;
24
+ }
@@ -11,6 +11,7 @@ import { DateRangeFieldDto } from "./date-range-field.dto";
11
11
  import { PeriodTypeEnumDto } from "./period-type-enum.dto";
12
12
  import { PeriodModelEnumDto } from "./period-model-enum.dto";
13
13
  import { PeriodUserDto } from "./period-user.dto";
14
+ import { PeriodApproverDto } from "./period-approver.dto";
14
15
  import { SimpleBranchDto } from "./simple-branch.dto";
15
16
  import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
16
17
  /**
@@ -25,6 +26,7 @@ export interface PeriodDto {
25
26
  file: string | null;
26
27
  type: PeriodTypeEnumDto;
27
28
  status_updated: string | null;
29
+ approvers: Array<PeriodApproverDto>;
28
30
  title?: string;
29
31
  description?: string;
30
32
  status?: UserPeriodStatusEnumDto;
@@ -18,5 +18,4 @@ export interface SprintJobHourlyReportDto {
18
18
  readonly billable_duration: number;
19
19
  readonly unbillable_duration: number;
20
20
  readonly total_duration: number;
21
- readonly jobs_count: number;
22
21
  }
@@ -24,7 +24,4 @@ export interface TaskJobHourlyReportDto {
24
24
  readonly billable_duration: number;
25
25
  readonly unbillable_duration: number;
26
26
  readonly total_duration: number;
27
- readonly jobs_count: number;
28
- readonly billable_jobs_count: number;
29
- readonly unbillable_jobs_count: number;
30
27
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.275",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.140)",
3
+ "version": "0.0.277",
4
+ "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.141)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",