@saritasa/crm-delmar-core-sdk 0.2.429 → 0.2.447

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.
@@ -23,11 +23,6 @@ export interface ProjectRequestDto {
23
23
  is_billable: boolean;
24
24
  minimum_time_billed_per_month: number;
25
25
  time_limit: number;
26
- /**
27
- * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
28
- */
29
- environment_code: string;
30
- nickname: string;
31
26
  client: number;
32
27
  project_managers: Array<number>;
33
28
  jira_link: SimpleJiraProjectRequestDto | null;
@@ -51,6 +46,11 @@ export interface ProjectRequestDto {
51
46
  is_development_started?: boolean;
52
47
  proposed_end_date?: string | null;
53
48
  actual_end_date?: string | null;
49
+ /**
50
+ * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
51
+ */
52
+ environment_code?: string;
53
+ nickname?: string;
54
54
  notes?: string;
55
55
  /**
56
56
  * Project ID in Zoho CRM
@@ -31,11 +31,6 @@ export interface ProjectStatusReportDto {
31
31
  is_billable: boolean;
32
32
  minimum_time_billed_per_month: number;
33
33
  readonly time_limit: number;
34
- /**
35
- * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
36
- */
37
- environment_code: string;
38
- nickname: string;
39
34
  readonly created_by: number | null;
40
35
  readonly updated_by: number | null;
41
36
  client: number;
@@ -70,6 +65,11 @@ export interface ProjectStatusReportDto {
70
65
  is_development_started?: boolean;
71
66
  proposed_end_date?: string | null;
72
67
  actual_end_date?: string | null;
68
+ /**
69
+ * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
70
+ */
71
+ environment_code?: string;
72
+ nickname?: string;
73
73
  notes?: string;
74
74
  /**
75
75
  * Project ID in Zoho CRM
@@ -31,11 +31,6 @@ export interface ProjectDto {
31
31
  is_billable: boolean;
32
32
  minimum_time_billed_per_month: number;
33
33
  time_limit: number;
34
- /**
35
- * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
36
- */
37
- environment_code: string;
38
- nickname: string;
39
34
  readonly created_by: number | null;
40
35
  readonly updated_by: number | null;
41
36
  client: number;
@@ -70,6 +65,11 @@ export interface ProjectDto {
70
65
  is_development_started?: boolean;
71
66
  proposed_end_date?: string | null;
72
67
  actual_end_date?: string | null;
68
+ /**
69
+ * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
70
+ */
71
+ environment_code?: string;
72
+ nickname?: string;
73
73
  notes?: string;
74
74
  /**
75
75
  * Project ID in Zoho CRM
@@ -8,9 +8,7 @@
8
8
  * Do not edit the class manually.
9
9
  */
10
10
  import { DateRangeFieldDto } from "./date-range-field.dto";
11
- import { LinkedUserPeriodDto } from "./linked-user-period.dto";
12
11
  import { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
13
- import { SimpleUserPeriodApproverDto } from "./simple-user-period-approver.dto";
14
12
  import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
15
13
  /**
16
14
  * Serializer used to show periods for user in calendar.
@@ -22,17 +20,4 @@ export interface UserPeriodUserCalendarDto {
22
20
  period: DateRangeFieldDto;
23
21
  type: UserPeriodTypeEnumDto;
24
22
  status: UserPeriodStatusEnumDto;
25
- readonly approvers_data: Array<SimpleUserPeriodApproverDto>;
26
- /**
27
- * Reference to another UserPeriod. For now it is used to link personal holidays to personal workdays.
28
- */
29
- readonly linked_user_period_data: LinkedUserPeriodDto | null;
30
- readonly linked_user_period_to_data: LinkedUserPeriodDto | null;
31
- status_updated?: string | null;
32
- file?: string | null;
33
- description?: string;
34
- /**
35
- * Link to the document where user describes who will cover their projects.
36
- */
37
- coverage_plan?: string;
38
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.2.429",
3
+ "version": "0.2.447",
4
4
  "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.10)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {