@saritasa/crm-delmar-core-sdk 0.1.11 → 0.1.12
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/clients-api.service.d.ts +23 -1
- package/api/clients-api.serviceInterface.d.ts +15 -0
- package/api/projects-api.service.d.ts +23 -1
- package/api/projects-api.serviceInterface.d.ts +20 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +461 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/blank-enum.dto.d.ts +12 -0
- package/model/client-duration-data.dto.d.ts +27 -0
- package/model/client-margin-report.dto.d.ts +25 -0
- package/model/clients-margin-report-retrieve-error-response400.dto.d.ts +16 -0
- package/model/clients-margin-report-retrieve-error.dto.d.ts +19 -0
- package/model/clients-margin-report-retrieve-id-in-error-component.dto.d.ts +27 -0
- package/model/clients-margin-report-retrieve-ordering-error-component.dto.d.ts +26 -0
- package/model/clients-margin-report-retrieve-period-error-component.dto.d.ts +28 -0
- package/model/clients-margin-report-retrieve-task-project-billing-type-error-component.dto.d.ts +26 -0
- package/model/clients-margin-report-retrieve-task-project-project-managers-in-error-component.dto.d.ts +27 -0
- package/model/clients-margin-report-retrieve-validation-error.dto.d.ts +15 -0
- package/model/hosting-frequency-enum.dto.d.ts +19 -0
- package/model/hosting-period.dto.d.ts +16 -0
- package/model/job.dto.d.ts +2 -0
- package/model/models.d.ts +27 -0
- package/model/project-margin-report.dto.d.ts +39 -0
- package/model/projects-margin-report-retrieve-billing-type-error-component.dto.d.ts +26 -0
- package/model/projects-margin-report-retrieve-billing-type-in-error-component.dto.d.ts +26 -0
- package/model/projects-margin-report-retrieve-client-account-manager-error-component.dto.d.ts +26 -0
- package/model/projects-margin-report-retrieve-client-account-manager-in-error-component.dto.d.ts +26 -0
- package/model/projects-margin-report-retrieve-client-error-component.dto.d.ts +26 -0
- package/model/projects-margin-report-retrieve-client-in-error-component.dto.d.ts +26 -0
- package/model/projects-margin-report-retrieve-error-response400.dto.d.ts +16 -0
- package/model/projects-margin-report-retrieve-error.dto.d.ts +24 -0
- package/model/projects-margin-report-retrieve-id-in-error-component.dto.d.ts +27 -0
- package/model/projects-margin-report-retrieve-period-error-component.dto.d.ts +28 -0
- package/model/projects-margin-report-retrieve-project-managers-error-component.dto.d.ts +28 -0
- package/model/projects-margin-report-retrieve-project-managers-in-error-component.dto.d.ts +28 -0
- package/model/projects-margin-report-retrieve-validation-error.dto.d.ts +15 -0
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
export declare enum BlankEnumDto {
|
|
11
|
+
Empty = ""
|
|
12
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
/**
|
|
11
|
+
* Serializer to present margin report for `Client` instance.
|
|
12
|
+
*/
|
|
13
|
+
export interface ClientDurationDataDto {
|
|
14
|
+
readonly id: number;
|
|
15
|
+
readonly created: string;
|
|
16
|
+
readonly modified: string;
|
|
17
|
+
name: string;
|
|
18
|
+
readonly billable_duration: number;
|
|
19
|
+
readonly billable_duration_round_half: number;
|
|
20
|
+
readonly billable_duration_round_zero: number;
|
|
21
|
+
readonly unbillable_duration: number;
|
|
22
|
+
readonly unbillable_duration_round_half: number;
|
|
23
|
+
readonly unbillable_duration_round_zero: number;
|
|
24
|
+
readonly total_duration: number;
|
|
25
|
+
readonly total_duration_round_half: number;
|
|
26
|
+
readonly total_duration_round_zero: number;
|
|
27
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ClientDurationDataDto } from "./client-duration-data.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to present total margin report for `Client` instances.
|
|
13
|
+
*/
|
|
14
|
+
export interface ClientMarginReportDto {
|
|
15
|
+
readonly billable_duration: number;
|
|
16
|
+
readonly billable_duration_round_half: number;
|
|
17
|
+
readonly billable_duration_round_zero: number;
|
|
18
|
+
readonly unbillable_duration: number;
|
|
19
|
+
readonly unbillable_duration_round_half: number;
|
|
20
|
+
readonly unbillable_duration_round_zero: number;
|
|
21
|
+
readonly total_duration: number;
|
|
22
|
+
readonly total_duration_round_half: number;
|
|
23
|
+
readonly total_duration_round_zero: number;
|
|
24
|
+
readonly clients: Array<ClientDurationDataDto>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { ClientsMarginReportRetrieveValidationErrorDto } from "./clients-margin-report-retrieve-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ClientsMarginReportRetrieveErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ClientsMarginReportRetrieveErrorResponse400Dto = ClientsMarginReportRetrieveValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { ClientsMarginReportRetrievePeriodErrorComponentDto } from "./clients-margin-report-retrieve-period-error-component.dto";
|
|
11
|
+
import { ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto } from "./clients-margin-report-retrieve-task-project-billing-type-error-component.dto";
|
|
12
|
+
import { ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto } from "./clients-margin-report-retrieve-task-project-project-managers-in-error-component.dto";
|
|
13
|
+
import { ClientsMarginReportRetrieveIdInErrorComponentDto } from "./clients-margin-report-retrieve-id-in-error-component.dto";
|
|
14
|
+
import { ClientsMarginReportRetrieveOrderingErrorComponentDto } from "./clients-margin-report-retrieve-ordering-error-component.dto";
|
|
15
|
+
/**
|
|
16
|
+
* @type ClientsMarginReportRetrieveErrorDto
|
|
17
|
+
* @export
|
|
18
|
+
*/
|
|
19
|
+
export type ClientsMarginReportRetrieveErrorDto = ClientsMarginReportRetrieveIdInErrorComponentDto | ClientsMarginReportRetrieveOrderingErrorComponentDto | ClientsMarginReportRetrievePeriodErrorComponentDto | ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto | ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto;
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
export interface ClientsMarginReportRetrieveIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ClientsMarginReportRetrieveIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ClientsMarginReportRetrieveIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ClientsMarginReportRetrieveIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ClientsMarginReportRetrieveIdInErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ClientsMarginReportRetrieveOrderingErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `ordering` - ordering
|
|
13
|
+
*/
|
|
14
|
+
attr: ClientsMarginReportRetrieveOrderingErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ClientsMarginReportRetrieveOrderingErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ClientsMarginReportRetrieveOrderingErrorComponentDtoAttrEnum {
|
|
22
|
+
Ordering = "ordering"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ClientsMarginReportRetrieveOrderingErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
export interface ClientsMarginReportRetrievePeriodErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period` - period
|
|
13
|
+
*/
|
|
14
|
+
attr: ClientsMarginReportRetrievePeriodErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ClientsMarginReportRetrievePeriodErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ClientsMarginReportRetrievePeriodErrorComponentDtoAttrEnum {
|
|
22
|
+
Period = "period"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ClientsMarginReportRetrievePeriodErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
package/model/clients-margin-report-retrieve-task-project-billing-type-error-component.dto.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `task__project__billing_type` - task__project__billing_type
|
|
13
|
+
*/
|
|
14
|
+
attr: ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
TaskProjectBillingType = "task__project__billing_type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
export interface ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `task__project__project_managers__in` - task__project__project_managers__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDtoAttrEnum {
|
|
22
|
+
TaskProjectProjectManagersIn = "task__project__project_managers__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 { ClientsMarginReportRetrieveErrorDto } from "./clients-margin-report-retrieve-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface ClientsMarginReportRetrieveValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ClientsMarginReportRetrieveErrorDto>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
/**
|
|
11
|
+
* * `monthly` - Monthly * `quarterly` - Quarterly * `semi_annual` - Semi-Annual * `annual` - Annual * `unknown` - Unknown
|
|
12
|
+
*/
|
|
13
|
+
export declare enum HostingFrequencyEnumDto {
|
|
14
|
+
Monthly = "monthly",
|
|
15
|
+
Quarterly = "quarterly",
|
|
16
|
+
SemiAnnual = "semi_annual",
|
|
17
|
+
Annual = "annual",
|
|
18
|
+
Unknown = "unknown"
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
11
|
+
import { BlankEnumDto } from "./blank-enum.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type HostingPeriodDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type HostingPeriodDto = BlankEnumDto | HostingFrequencyEnumDto;
|
package/model/job.dto.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ export interface JobDto {
|
|
|
34
34
|
readonly created_by_data: SimpleUserDto;
|
|
35
35
|
readonly updated_by: number | null;
|
|
36
36
|
readonly updated_by_data: SimpleUserDto;
|
|
37
|
+
readonly department_name: string;
|
|
38
|
+
readonly department_color: string;
|
|
37
39
|
work_type?: number | null;
|
|
38
40
|
branch?: number | null;
|
|
39
41
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from "./billable-chart.dto";
|
|
|
2
2
|
export * from "./billing-frequency-enum.dto";
|
|
3
3
|
export * from "./billing-method-enum.dto";
|
|
4
4
|
export * from "./billing-type-enum.dto";
|
|
5
|
+
export * from "./blank-enum.dto";
|
|
5
6
|
export * from "./branch-change-state-request.dto";
|
|
6
7
|
export * from "./branch.dto";
|
|
7
8
|
export * from "./branch-period.dto";
|
|
@@ -104,7 +105,9 @@ export * from "./branches-users-stats-list-id-in-error-component.dto";
|
|
|
104
105
|
export * from "./branches-users-stats-list-users-search-error-component.dto";
|
|
105
106
|
export * from "./branches-users-stats-list-validation-error.dto";
|
|
106
107
|
export * from "./client.dto";
|
|
108
|
+
export * from "./client-duration-data.dto";
|
|
107
109
|
export * from "./client-error-enum.dto";
|
|
110
|
+
export * from "./client-margin-report.dto";
|
|
108
111
|
export * from "./client-note.dto";
|
|
109
112
|
export * from "./client-note-request.dto";
|
|
110
113
|
export * from "./client-note-resource-create-export-job-request.dto";
|
|
@@ -252,6 +255,14 @@ export * from "./clients-list-zip-error-component.dto";
|
|
|
252
255
|
export * from "./clients-list-zip-in-error-component.dto";
|
|
253
256
|
export * from "./clients-list-zoho-account-id-error-component.dto";
|
|
254
257
|
export * from "./clients-list-zoho-account-id-in-error-component.dto";
|
|
258
|
+
export * from "./clients-margin-report-retrieve-error.dto";
|
|
259
|
+
export * from "./clients-margin-report-retrieve-error-response400.dto";
|
|
260
|
+
export * from "./clients-margin-report-retrieve-id-in-error-component.dto";
|
|
261
|
+
export * from "./clients-margin-report-retrieve-ordering-error-component.dto";
|
|
262
|
+
export * from "./clients-margin-report-retrieve-period-error-component.dto";
|
|
263
|
+
export * from "./clients-margin-report-retrieve-task-project-billing-type-error-component.dto";
|
|
264
|
+
export * from "./clients-margin-report-retrieve-task-project-project-managers-in-error-component.dto";
|
|
265
|
+
export * from "./clients-margin-report-retrieve-validation-error.dto";
|
|
255
266
|
export * from "./clients-search-list-account-manager-error-component.dto";
|
|
256
267
|
export * from "./clients-search-list-account-manager-in-error-component.dto";
|
|
257
268
|
export * from "./clients-search-list-address1-error-component.dto";
|
|
@@ -666,6 +677,8 @@ export * from "./export-users-start-create-file-format-error-component.dto";
|
|
|
666
677
|
export * from "./export-users-start-create-non-field-errors-error-component.dto";
|
|
667
678
|
export * from "./export-users-start-create-validation-error.dto";
|
|
668
679
|
export * from "./file-format-enum.dto";
|
|
680
|
+
export * from "./hosting-frequency-enum.dto";
|
|
681
|
+
export * from "./hosting-period.dto";
|
|
669
682
|
export * from "./jira-client-create-project-create-error.dto";
|
|
670
683
|
export * from "./jira-client-create-project-create-error-response400.dto";
|
|
671
684
|
export * from "./jira-client-create-project-create-instance-error-component.dto";
|
|
@@ -1024,6 +1037,7 @@ export * from "./profile-update-updated-by-error-component.dto";
|
|
|
1024
1037
|
export * from "./profile-update-validation-error.dto";
|
|
1025
1038
|
export * from "./progress-info.dto";
|
|
1026
1039
|
export * from "./project.dto";
|
|
1040
|
+
export * from "./project-margin-report.dto";
|
|
1027
1041
|
export * from "./project-note.dto";
|
|
1028
1042
|
export * from "./project-note-request.dto";
|
|
1029
1043
|
export * from "./project-note-resource-create-export-job-request.dto";
|
|
@@ -1171,6 +1185,19 @@ export * from "./projects-list-project-managers-id-in-error-component.dto";
|
|
|
1171
1185
|
export * from "./projects-list-status-error-component.dto";
|
|
1172
1186
|
export * from "./projects-list-status-in-error-component.dto";
|
|
1173
1187
|
export * from "./projects-list-validation-error.dto";
|
|
1188
|
+
export * from "./projects-margin-report-retrieve-billing-type-error-component.dto";
|
|
1189
|
+
export * from "./projects-margin-report-retrieve-billing-type-in-error-component.dto";
|
|
1190
|
+
export * from "./projects-margin-report-retrieve-client-account-manager-error-component.dto";
|
|
1191
|
+
export * from "./projects-margin-report-retrieve-client-account-manager-in-error-component.dto";
|
|
1192
|
+
export * from "./projects-margin-report-retrieve-client-error-component.dto";
|
|
1193
|
+
export * from "./projects-margin-report-retrieve-client-in-error-component.dto";
|
|
1194
|
+
export * from "./projects-margin-report-retrieve-error.dto";
|
|
1195
|
+
export * from "./projects-margin-report-retrieve-error-response400.dto";
|
|
1196
|
+
export * from "./projects-margin-report-retrieve-id-in-error-component.dto";
|
|
1197
|
+
export * from "./projects-margin-report-retrieve-period-error-component.dto";
|
|
1198
|
+
export * from "./projects-margin-report-retrieve-project-managers-error-component.dto";
|
|
1199
|
+
export * from "./projects-margin-report-retrieve-project-managers-in-error-component.dto";
|
|
1200
|
+
export * from "./projects-margin-report-retrieve-validation-error.dto";
|
|
1174
1201
|
export * from "./projects-status-report-list-billing-type-error-component.dto";
|
|
1175
1202
|
export * from "./projects-status-report-list-billing-type-in-error-component.dto";
|
|
1176
1203
|
export * from "./projects-status-report-list-client-account-manager-error-component.dto";
|
|
@@ -0,0 +1,39 @@
|
|
|
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 { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
11
|
+
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
12
|
+
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
13
|
+
import { HostingPeriodDto } from "./hosting-period.dto";
|
|
14
|
+
/**
|
|
15
|
+
* Serializer to present margin report for `Project` instances.
|
|
16
|
+
*/
|
|
17
|
+
export interface ProjectMarginReportDto {
|
|
18
|
+
readonly id: number;
|
|
19
|
+
readonly created: string;
|
|
20
|
+
readonly modified: string;
|
|
21
|
+
name: string;
|
|
22
|
+
billing_type: BillingTypeEnumDto;
|
|
23
|
+
billing_frequency: BillingFrequencyEnumDto;
|
|
24
|
+
readonly priority_data: SimpleProjectPriorityDto;
|
|
25
|
+
readonly billable_duration: number;
|
|
26
|
+
readonly billable_duration_round_half: number;
|
|
27
|
+
readonly billable_duration_round_zero: number;
|
|
28
|
+
readonly unbillable_duration: number;
|
|
29
|
+
readonly unbillable_duration_round_half: number;
|
|
30
|
+
readonly unbillable_duration_round_zero: number;
|
|
31
|
+
readonly total_duration: number;
|
|
32
|
+
readonly total_duration_round_half: number;
|
|
33
|
+
readonly total_duration_round_zero: number;
|
|
34
|
+
priority?: number | null;
|
|
35
|
+
has_hosting?: boolean;
|
|
36
|
+
hosting_fee?: string | null;
|
|
37
|
+
hosting_frequency?: HostingPeriodDto;
|
|
38
|
+
hosting_start?: string | null;
|
|
39
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveBillingTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `billing_type` - billing_type
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
BillingType = "billing_type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveBillingTypeInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `billing_type__in` - billing_type__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `null_characters_not_allowed` - null_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoAttrEnum {
|
|
22
|
+
BillingTypeIn = "billing_type__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoCodeEnum {
|
|
25
|
+
NullCharactersNotAllowed = "null_characters_not_allowed"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client__account_manager` - client__account_manager
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDtoAttrEnum {
|
|
22
|
+
ClientAccountManager = "client__account_manager"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
package/model/projects-margin-report-retrieve-client-account-manager-in-error-component.dto.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client__account_manager__in` - client__account_manager__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoAttrEnum {
|
|
22
|
+
ClientAccountManagerIn = "client__account_manager__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveClientErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client` - client
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveClientErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveClientErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveClientErrorComponentDtoAttrEnum {
|
|
22
|
+
Client = "client"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveClientErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveClientInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `client__in` - client__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveClientInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveClientInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveClientInErrorComponentDtoAttrEnum {
|
|
22
|
+
ClientIn = "client__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveClientInErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice"
|
|
26
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { ProjectsMarginReportRetrieveValidationErrorDto } from "./projects-margin-report-retrieve-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ProjectsMarginReportRetrieveErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ProjectsMarginReportRetrieveErrorResponse400Dto = ParseErrorResponseDto | ProjectsMarginReportRetrieveValidationErrorDto;
|
|
@@ -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 { ProjectsMarginReportRetrieveProjectManagersInErrorComponentDto } from "./projects-margin-report-retrieve-project-managers-in-error-component.dto";
|
|
11
|
+
import { ProjectsMarginReportRetrieveBillingTypeErrorComponentDto } from "./projects-margin-report-retrieve-billing-type-error-component.dto";
|
|
12
|
+
import { ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDto } from "./projects-margin-report-retrieve-client-account-manager-error-component.dto";
|
|
13
|
+
import { ProjectsMarginReportRetrieveClientInErrorComponentDto } from "./projects-margin-report-retrieve-client-in-error-component.dto";
|
|
14
|
+
import { ProjectsMarginReportRetrievePeriodErrorComponentDto } from "./projects-margin-report-retrieve-period-error-component.dto";
|
|
15
|
+
import { ProjectsMarginReportRetrieveIdInErrorComponentDto } from "./projects-margin-report-retrieve-id-in-error-component.dto";
|
|
16
|
+
import { ProjectsMarginReportRetrieveBillingTypeInErrorComponentDto } from "./projects-margin-report-retrieve-billing-type-in-error-component.dto";
|
|
17
|
+
import { ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDto } from "./projects-margin-report-retrieve-client-account-manager-in-error-component.dto";
|
|
18
|
+
import { ProjectsMarginReportRetrieveClientErrorComponentDto } from "./projects-margin-report-retrieve-client-error-component.dto";
|
|
19
|
+
import { ProjectsMarginReportRetrieveProjectManagersErrorComponentDto } from "./projects-margin-report-retrieve-project-managers-error-component.dto";
|
|
20
|
+
/**
|
|
21
|
+
* @type ProjectsMarginReportRetrieveErrorDto
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export type ProjectsMarginReportRetrieveErrorDto = ProjectsMarginReportRetrieveBillingTypeErrorComponentDto | ProjectsMarginReportRetrieveBillingTypeInErrorComponentDto | ProjectsMarginReportRetrieveClientAccountManagerErrorComponentDto | ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDto | ProjectsMarginReportRetrieveClientErrorComponentDto | ProjectsMarginReportRetrieveClientInErrorComponentDto | ProjectsMarginReportRetrieveIdInErrorComponentDto | ProjectsMarginReportRetrievePeriodErrorComponentDto | ProjectsMarginReportRetrieveProjectManagersErrorComponentDto | ProjectsMarginReportRetrieveProjectManagersInErrorComponentDto;
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
export interface ProjectsMarginReportRetrieveIdInErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `id__in` - id__in
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsMarginReportRetrieveIdInErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_value` - max_value
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsMarginReportRetrieveIdInErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsMarginReportRetrieveIdInErrorComponentDtoAttrEnum {
|
|
22
|
+
IdIn = "id__in"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsMarginReportRetrieveIdInErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxValue = "max_value"
|
|
27
|
+
}
|