@saritasa/crm-delmar-core-sdk 0.0.169 → 0.0.170
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/esm2022/model/client-serializer-with-month-stats.dto.mjs +10 -1
- package/esm2022/model/project-serializer-with-month-stats.dto.mjs +10 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +20 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/client-serializer-with-month-stats.dto.d.ts +0 -41
- package/model/project-serializer-with-month-stats.dto.d.ts +0 -51
- package/package.json +1 -1
|
@@ -7,10 +7,6 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import { SimpleUserDto } from "./simple-user.dto";
|
|
11
|
-
import { BillingMethodEnumDto } from "./billing-method-enum.dto";
|
|
12
|
-
import { WritableClientContactDto } from "./writable-client-contact.dto";
|
|
13
|
-
import { ClientStatusEnumDto } from "./client-status-enum.dto";
|
|
14
10
|
/**
|
|
15
11
|
* Serializer for Client model with month stats.
|
|
16
12
|
*/
|
|
@@ -18,42 +14,6 @@ export interface ClientSerializerWithMonthStatsDto {
|
|
|
18
14
|
readonly id: number;
|
|
19
15
|
readonly created: string;
|
|
20
16
|
readonly modified: string;
|
|
21
|
-
name: string;
|
|
22
|
-
status: ClientStatusEnumDto;
|
|
23
|
-
website: string;
|
|
24
|
-
is_billable: boolean;
|
|
25
|
-
billing_method: BillingMethodEnumDto;
|
|
26
|
-
account_manager: number;
|
|
27
|
-
readonly account_manager_data: SimpleUserDto;
|
|
28
|
-
payment_recipient_name: string;
|
|
29
|
-
time_limit_per_month: number;
|
|
30
|
-
/**
|
|
31
|
-
* Client ID in QuickBooks CRM
|
|
32
|
-
*/
|
|
33
|
-
qb_client_id: string;
|
|
34
|
-
/**
|
|
35
|
-
* Client ID in Zoho CRM
|
|
36
|
-
*/
|
|
37
|
-
zoho_account_id: string;
|
|
38
|
-
address1: string;
|
|
39
|
-
address2: string;
|
|
40
|
-
city: string;
|
|
41
|
-
state: string;
|
|
42
|
-
zip: string;
|
|
43
|
-
country: string;
|
|
44
|
-
notes: string;
|
|
45
|
-
billing_address1: string;
|
|
46
|
-
billing_address2: string;
|
|
47
|
-
billing_city: string;
|
|
48
|
-
billing_state: string;
|
|
49
|
-
billing_zip: string;
|
|
50
|
-
billing_country: string;
|
|
51
|
-
billing_notes: string;
|
|
52
|
-
readonly created_by: number | null;
|
|
53
|
-
readonly created_by_data: SimpleUserDto;
|
|
54
|
-
readonly updated_by: number | null;
|
|
55
|
-
readonly updated_by_data: SimpleUserDto;
|
|
56
|
-
contacts_data: Array<WritableClientContactDto>;
|
|
57
17
|
readonly billable_day_duration: number;
|
|
58
18
|
readonly unbillable_day_duration: number;
|
|
59
19
|
readonly billable_week_duration: number;
|
|
@@ -62,5 +22,4 @@ export interface ClientSerializerWithMonthStatsDto {
|
|
|
62
22
|
readonly unbillable_month_duration: number;
|
|
63
23
|
readonly billable_month_avg_day_duration: number;
|
|
64
24
|
readonly unbillable_month_avg_day_duration: number;
|
|
65
|
-
contract_until?: string | null;
|
|
66
25
|
}
|
|
@@ -7,14 +7,6 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
11
|
-
import { SimpleUserDto } from "./simple-user.dto";
|
|
12
|
-
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
13
|
-
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
14
|
-
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
15
|
-
import { SimpleClientDto } from "./simple-client.dto";
|
|
16
|
-
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
17
|
-
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
18
10
|
/**
|
|
19
11
|
* Serializer for Project model with month stats.
|
|
20
12
|
*/
|
|
@@ -22,32 +14,6 @@ export interface ProjectSerializerWithMonthStatsDto {
|
|
|
22
14
|
readonly id: number;
|
|
23
15
|
readonly created: string;
|
|
24
16
|
readonly modified: string;
|
|
25
|
-
name: string;
|
|
26
|
-
status: ProjectStatusEnumDto;
|
|
27
|
-
billing_type: BillingTypeEnumDto;
|
|
28
|
-
billing_frequency: BillingFrequencyEnumDto;
|
|
29
|
-
is_utilized: boolean;
|
|
30
|
-
is_billable: boolean;
|
|
31
|
-
readonly tech_manager_data: SimpleUserDto;
|
|
32
|
-
readonly qa_manager_data: SimpleUserDto;
|
|
33
|
-
time_limit_per_month: number;
|
|
34
|
-
time_limit: number;
|
|
35
|
-
/**
|
|
36
|
-
* This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
|
|
37
|
-
*/
|
|
38
|
-
environment_code: string;
|
|
39
|
-
nickname: string;
|
|
40
|
-
readonly created_by: number | null;
|
|
41
|
-
readonly created_by_data: SimpleUserDto;
|
|
42
|
-
readonly updated_by: number | null;
|
|
43
|
-
readonly updated_by_data: SimpleUserDto;
|
|
44
|
-
readonly client_data: SimpleClientDto;
|
|
45
|
-
readonly client_contact_data: SimpleClientContactDto;
|
|
46
|
-
readonly priority_data: SimpleProjectPriorityDto;
|
|
47
|
-
readonly project_managers: Array<number>;
|
|
48
|
-
readonly project_managers_data: Array<SimpleUserDto>;
|
|
49
|
-
jira_links: Array<number>;
|
|
50
|
-
readonly jira_links_data: Array<SimpleJiraProjectDto>;
|
|
51
17
|
readonly billable_day_jobs_duration: number;
|
|
52
18
|
readonly unbillable_day_jobs_duration: number;
|
|
53
19
|
readonly billable_week_jobs_duration: number;
|
|
@@ -56,21 +22,4 @@ export interface ProjectSerializerWithMonthStatsDto {
|
|
|
56
22
|
readonly unbillable_month_jobs_duration: number;
|
|
57
23
|
readonly billable_month_avg_day_jobs_duration: number;
|
|
58
24
|
readonly unbillable_month_avg_day_jobs_duration: number;
|
|
59
|
-
tech_manager?: number | null;
|
|
60
|
-
qa_manager?: number | null;
|
|
61
|
-
start_date?: string | null;
|
|
62
|
-
development_start_date?: string | null;
|
|
63
|
-
is_development_started?: boolean;
|
|
64
|
-
proposed_end_date?: string | null;
|
|
65
|
-
actual_end_date?: string | null;
|
|
66
|
-
notes?: string;
|
|
67
|
-
/**
|
|
68
|
-
* Project ID in Zoho CRM
|
|
69
|
-
*/
|
|
70
|
-
zoho_id?: string;
|
|
71
|
-
dev_site?: string;
|
|
72
|
-
actual_site?: string;
|
|
73
|
-
client?: number | null;
|
|
74
|
-
client_contact?: number | null;
|
|
75
|
-
priority?: number | null;
|
|
76
25
|
}
|
package/package.json
CHANGED