@saritasa/crm-delmar-core-sdk 0.1.17 → 0.1.19
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/api.d.ts +4 -1
- package/api/clients-api.serviceInterface.d.ts +1 -0
- package/api/export-component-hourly-report-for-project-api.serviceInterface.d.ts +5 -0
- package/api/export-department-hourly-report-for-project-api.serviceInterface.d.ts +5 -0
- package/api/export-job-hourly-report-for-project-api.serviceInterface.d.ts +5 -0
- package/api/export-margin-report-api.service.d.ts +98 -0
- package/api/export-margin-report-api.serviceInterface.d.ts +66 -0
- package/api/export-project-summary-api.serviceInterface.d.ts +5 -0
- package/api/export-sprint-hourly-report-for-project-api.serviceInterface.d.ts +5 -0
- package/api/export-task-hourly-report-for-project-api.serviceInterface.d.ts +5 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +405 -7
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/billing-frequency-enum.dto.d.ts +1 -2
- package/model/export-margin-report-start-create-error-response400.dto.d.ts +16 -0
- package/model/export-margin-report-start-create-error.dto.d.ts +16 -0
- package/model/export-margin-report-start-create-file-format-error-component.dto.d.ts +28 -0
- package/model/export-margin-report-start-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/export-margin-report-start-create-validation-error.dto.d.ts +15 -0
- package/model/hosting-frequency-enum.dto.d.ts +2 -3
- package/model/margin-report-resource-create-export-job-file-format-enum.dto.d.ts +15 -0
- package/model/margin-report-resource-create-export-job-request.dto.d.ts +16 -0
- package/model/models.d.ts +9 -1
- package/model/project-billing-frequency.dto.d.ts +16 -0
- package/model/{hosting-period.dto.d.ts → project-hosting-frequency.dto.d.ts} +2 -2
- package/model/project-margin-report.dto.d.ts +4 -4
- package/model/project-request.dto.d.ts +4 -4
- package/model/project-serializer-with-stats.dto.d.ts +4 -4
- package/model/project-status-report.dto.d.ts +4 -4
- package/model/project.dto.d.ts +4 -4
- package/model/projects-create-billing-frequency-error-component.dto.d.ts +2 -3
- package/model/projects-update-billing-frequency-error-component.dto.d.ts +2 -3
- package/package.json +2 -2
|
@@ -8,10 +8,9 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `
|
|
11
|
+
* * `weekly` - Weekly * `monthly` - Monthly * `bi_monthly` - Bi-monthly * `quarterly` - Quarterly * `annual` - Annual * `scheduled` - Scheduled
|
|
12
12
|
*/
|
|
13
13
|
export declare enum BillingFrequencyEnumDto {
|
|
14
|
-
Unknown = "unknown",
|
|
15
14
|
Weekly = "weekly",
|
|
16
15
|
Monthly = "monthly",
|
|
17
16
|
BiMonthly = "bi_monthly",
|
|
@@ -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 { ExportMarginReportStartCreateValidationErrorDto } from "./export-margin-report-start-create-validation-error.dto";
|
|
11
|
+
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportMarginReportStartCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportMarginReportStartCreateErrorResponse400Dto = ExportMarginReportStartCreateValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -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 { ExportMarginReportStartCreateNonFieldErrorsErrorComponentDto } from "./export-margin-report-start-create-non-field-errors-error-component.dto";
|
|
11
|
+
import { ExportMarginReportStartCreateFileFormatErrorComponentDto } from "./export-margin-report-start-create-file-format-error-component.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportMarginReportStartCreateErrorDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportMarginReportStartCreateErrorDto = ExportMarginReportStartCreateFileFormatErrorComponentDto | ExportMarginReportStartCreateNonFieldErrorsErrorComponentDto;
|
|
@@ -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 ExportMarginReportStartCreateFileFormatErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `file_format` - file_format
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportMarginReportStartCreateFileFormatErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ExportMarginReportStartCreateFileFormatErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportMarginReportStartCreateFileFormatErrorComponentDtoAttrEnum {
|
|
22
|
+
FileFormat = "file_format"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportMarginReportStartCreateFileFormatErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -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 ExportMarginReportStartCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportMarginReportStartCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: ExportMarginReportStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportMarginReportStartCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportMarginReportStartCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
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 { ExportMarginReportStartCreateErrorDto } from "./export-margin-report-start-create-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface ExportMarginReportStartCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ExportMarginReportStartCreateErrorDto>;
|
|
15
|
+
}
|
|
@@ -8,12 +8,11 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `monthly` - Monthly * `quarterly` - Quarterly * `semi_annual` - Semi-Annual * `annual` - Annual
|
|
11
|
+
* * `monthly` - Monthly * `quarterly` - Quarterly * `semi_annual` - Semi-Annual * `annual` - Annual
|
|
12
12
|
*/
|
|
13
13
|
export declare enum HostingFrequencyEnumDto {
|
|
14
14
|
Monthly = "monthly",
|
|
15
15
|
Quarterly = "quarterly",
|
|
16
16
|
SemiAnnual = "semi_annual",
|
|
17
|
-
Annual = "annual"
|
|
18
|
-
Unknown = "unknown"
|
|
17
|
+
Annual = "annual"
|
|
19
18
|
}
|
|
@@ -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
|
+
/**
|
|
11
|
+
* * `xlsx` - xlsx
|
|
12
|
+
*/
|
|
13
|
+
export declare enum MarginReportResourceCreateExportJobFileFormatEnumDto {
|
|
14
|
+
Xlsx = "xlsx"
|
|
15
|
+
}
|
|
@@ -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 { MarginReportResourceCreateExportJobFileFormatEnumDto } from "./margin-report-resource-create-export-job-file-format-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to start export job.
|
|
13
|
+
*/
|
|
14
|
+
export interface MarginReportResourceCreateExportJobRequestDto {
|
|
15
|
+
file_format: MarginReportResourceCreateExportJobFileFormatEnumDto;
|
|
16
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -624,6 +624,11 @@ export * from "./export-jobs-start-create-error-response400.dto";
|
|
|
624
624
|
export * from "./export-jobs-start-create-file-format-error-component.dto";
|
|
625
625
|
export * from "./export-jobs-start-create-non-field-errors-error-component.dto";
|
|
626
626
|
export * from "./export-jobs-start-create-validation-error.dto";
|
|
627
|
+
export * from "./export-margin-report-start-create-error.dto";
|
|
628
|
+
export * from "./export-margin-report-start-create-error-response400.dto";
|
|
629
|
+
export * from "./export-margin-report-start-create-file-format-error-component.dto";
|
|
630
|
+
export * from "./export-margin-report-start-create-non-field-errors-error-component.dto";
|
|
631
|
+
export * from "./export-margin-report-start-create-validation-error.dto";
|
|
627
632
|
export * from "./export-progress.dto";
|
|
628
633
|
export * from "./export-project-notes-start-create-error.dto";
|
|
629
634
|
export * from "./export-project-notes-start-create-error-response400.dto";
|
|
@@ -678,7 +683,6 @@ export * from "./export-users-start-create-non-field-errors-error-component.dto"
|
|
|
678
683
|
export * from "./export-users-start-create-validation-error.dto";
|
|
679
684
|
export * from "./file-format-enum.dto";
|
|
680
685
|
export * from "./hosting-frequency-enum.dto";
|
|
681
|
-
export * from "./hosting-period.dto";
|
|
682
686
|
export * from "./jira-client-create-project-create-error.dto";
|
|
683
687
|
export * from "./jira-client-create-project-create-error-response400.dto";
|
|
684
688
|
export * from "./jira-client-create-project-create-instance-error-component.dto";
|
|
@@ -918,6 +922,8 @@ export * from "./locations-update-non-field-errors-error-component.dto";
|
|
|
918
922
|
export * from "./locations-update-timezone-error-component.dto";
|
|
919
923
|
export * from "./locations-update-validation-error.dto";
|
|
920
924
|
export * from "./login-open-id-request.dto";
|
|
925
|
+
export * from "./margin-report-resource-create-export-job-file-format-enum.dto";
|
|
926
|
+
export * from "./margin-report-resource-create-export-job-request.dto";
|
|
921
927
|
export * from "./notification-data.dto";
|
|
922
928
|
export * from "./notification.dto";
|
|
923
929
|
export * from "./notification-payload.dto";
|
|
@@ -1036,7 +1042,9 @@ export * from "./profile-update-timezone-error-component.dto";
|
|
|
1036
1042
|
export * from "./profile-update-updated-by-error-component.dto";
|
|
1037
1043
|
export * from "./profile-update-validation-error.dto";
|
|
1038
1044
|
export * from "./progress-info.dto";
|
|
1045
|
+
export * from "./project-billing-frequency.dto";
|
|
1039
1046
|
export * from "./project.dto";
|
|
1047
|
+
export * from "./project-hosting-frequency.dto";
|
|
1040
1048
|
export * from "./project-margin-report.dto";
|
|
1041
1049
|
export * from "./project-note.dto";
|
|
1042
1050
|
export * from "./project-note-request.dto";
|
|
@@ -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 { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
11
|
+
import { BlankEnumDto } from "./blank-enum.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ProjectBillingFrequencyDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ProjectBillingFrequencyDto = BillingFrequencyEnumDto | BlankEnumDto;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
import { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
11
11
|
import { BlankEnumDto } from "./blank-enum.dto";
|
|
12
12
|
/**
|
|
13
|
-
* @type
|
|
13
|
+
* @type ProjectHostingFrequencyDto
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
|
-
export type
|
|
16
|
+
export type ProjectHostingFrequencyDto = BlankEnumDto | HostingFrequencyEnumDto;
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { ProjectHostingFrequencyDto } from "./project-hosting-frequency.dto";
|
|
11
11
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
12
12
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
13
|
-
import {
|
|
13
|
+
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
14
14
|
/**
|
|
15
15
|
* Serializer to present margin report for `Project` instances.
|
|
16
16
|
*/
|
|
@@ -20,7 +20,6 @@ export interface ProjectMarginReportDto {
|
|
|
20
20
|
readonly modified: string;
|
|
21
21
|
name: string;
|
|
22
22
|
billing_type: BillingTypeEnumDto;
|
|
23
|
-
billing_frequency: BillingFrequencyEnumDto;
|
|
24
23
|
readonly billable_duration: number;
|
|
25
24
|
readonly billable_duration_round_half: number;
|
|
26
25
|
readonly billable_duration_round_zero: number;
|
|
@@ -31,9 +30,10 @@ export interface ProjectMarginReportDto {
|
|
|
31
30
|
readonly total_duration_round_half: number;
|
|
32
31
|
readonly total_duration_round_zero: number;
|
|
33
32
|
readonly priority_data: SimpleProjectPriorityDto | null;
|
|
33
|
+
billing_frequency?: ProjectBillingFrequencyDto;
|
|
34
34
|
priority?: number | null;
|
|
35
35
|
has_hosting?: boolean;
|
|
36
36
|
hosting_fee?: string | null;
|
|
37
|
-
hosting_frequency?:
|
|
37
|
+
hosting_frequency?: ProjectHostingFrequencyDto;
|
|
38
38
|
hosting_start?: string | null;
|
|
39
39
|
}
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleJiraProjectRequestDto } from "./simple-jira-project-request.dto";
|
|
11
|
-
import {
|
|
11
|
+
import { ProjectHostingFrequencyDto } from "./project-hosting-frequency.dto";
|
|
12
12
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
13
|
-
import {
|
|
13
|
+
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
14
14
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
15
15
|
/**
|
|
16
16
|
* Serializer for Project model.
|
|
@@ -19,7 +19,6 @@ export interface ProjectRequestDto {
|
|
|
19
19
|
name: string;
|
|
20
20
|
status: ProjectStatusEnumDto;
|
|
21
21
|
billing_type: BillingTypeEnumDto;
|
|
22
|
-
billing_frequency: BillingFrequencyEnumDto;
|
|
23
22
|
is_utilized: boolean;
|
|
24
23
|
is_billable: boolean;
|
|
25
24
|
time_limit_per_month: number;
|
|
@@ -32,9 +31,10 @@ export interface ProjectRequestDto {
|
|
|
32
31
|
client: number;
|
|
33
32
|
project_managers: Array<number>;
|
|
34
33
|
jira_link: SimpleJiraProjectRequestDto | null;
|
|
34
|
+
billing_frequency?: ProjectBillingFrequencyDto;
|
|
35
35
|
has_hosting?: boolean;
|
|
36
36
|
hosting_fee?: string | null;
|
|
37
|
-
hosting_frequency?:
|
|
37
|
+
hosting_frequency?: ProjectHostingFrequencyDto;
|
|
38
38
|
hosting_start?: string | null;
|
|
39
39
|
tech_manager?: number | null;
|
|
40
40
|
qa_manager?: number | null;
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
11
11
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
12
|
-
import {
|
|
12
|
+
import { ProjectHostingFrequencyDto } from "./project-hosting-frequency.dto";
|
|
13
13
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
14
14
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
15
|
+
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
15
16
|
import { SimpleClientDto } from "./simple-client.dto";
|
|
16
|
-
import { HostingPeriodDto } from "./hosting-period.dto";
|
|
17
17
|
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
18
18
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
19
19
|
/**
|
|
@@ -26,7 +26,6 @@ export interface ProjectSerializerWithStatsDto {
|
|
|
26
26
|
name: string;
|
|
27
27
|
status: ProjectStatusEnumDto;
|
|
28
28
|
billing_type: BillingTypeEnumDto;
|
|
29
|
-
billing_frequency: BillingFrequencyEnumDto;
|
|
30
29
|
is_utilized: boolean;
|
|
31
30
|
is_billable: boolean;
|
|
32
31
|
time_limit_per_month: number;
|
|
@@ -57,9 +56,10 @@ export interface ProjectSerializerWithStatsDto {
|
|
|
57
56
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
58
57
|
readonly created_by_data: SimpleUserDto | null;
|
|
59
58
|
readonly updated_by_data: SimpleUserDto | null;
|
|
59
|
+
billing_frequency?: ProjectBillingFrequencyDto;
|
|
60
60
|
has_hosting?: boolean;
|
|
61
61
|
hosting_fee?: string | null;
|
|
62
|
-
hosting_frequency?:
|
|
62
|
+
hosting_frequency?: ProjectHostingFrequencyDto;
|
|
63
63
|
hosting_start?: string | null;
|
|
64
64
|
tech_manager?: number | null;
|
|
65
65
|
qa_manager?: number | null;
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
import { SimpleClientStatusReportDto } from "./simple-client-status-report.dto";
|
|
11
11
|
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
12
12
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
13
|
-
import {
|
|
13
|
+
import { ProjectHostingFrequencyDto } from "./project-hosting-frequency.dto";
|
|
14
14
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
15
15
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
16
|
-
import {
|
|
16
|
+
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
17
17
|
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
18
18
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
19
19
|
/**
|
|
@@ -26,7 +26,6 @@ export interface ProjectStatusReportDto {
|
|
|
26
26
|
name: string;
|
|
27
27
|
status: ProjectStatusEnumDto;
|
|
28
28
|
billing_type: BillingTypeEnumDto;
|
|
29
|
-
billing_frequency: BillingFrequencyEnumDto;
|
|
30
29
|
is_utilized: boolean;
|
|
31
30
|
is_billable: boolean;
|
|
32
31
|
time_limit_per_month: number;
|
|
@@ -51,9 +50,10 @@ export interface ProjectStatusReportDto {
|
|
|
51
50
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
52
51
|
readonly created_by_data: SimpleUserDto | null;
|
|
53
52
|
readonly updated_by_data: SimpleUserDto | null;
|
|
53
|
+
billing_frequency?: ProjectBillingFrequencyDto;
|
|
54
54
|
has_hosting?: boolean;
|
|
55
55
|
hosting_fee?: string | null;
|
|
56
|
-
hosting_frequency?:
|
|
56
|
+
hosting_frequency?: ProjectHostingFrequencyDto;
|
|
57
57
|
hosting_start?: string | null;
|
|
58
58
|
tech_manager?: number | null;
|
|
59
59
|
qa_manager?: number | null;
|
package/model/project.dto.d.ts
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { SimpleJiraProjectDto } from "./simple-jira-project.dto";
|
|
11
11
|
import { SimpleUserDto } from "./simple-user.dto";
|
|
12
|
-
import {
|
|
12
|
+
import { ProjectHostingFrequencyDto } from "./project-hosting-frequency.dto";
|
|
13
13
|
import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
|
|
14
14
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
15
|
+
import { ProjectBillingFrequencyDto } from "./project-billing-frequency.dto";
|
|
15
16
|
import { SimpleClientDto } from "./simple-client.dto";
|
|
16
|
-
import { HostingPeriodDto } from "./hosting-period.dto";
|
|
17
17
|
import { SimpleClientContactDto } from "./simple-client-contact.dto";
|
|
18
18
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
19
19
|
/**
|
|
@@ -26,7 +26,6 @@ export interface ProjectDto {
|
|
|
26
26
|
name: string;
|
|
27
27
|
status: ProjectStatusEnumDto;
|
|
28
28
|
billing_type: BillingTypeEnumDto;
|
|
29
|
-
billing_frequency: BillingFrequencyEnumDto;
|
|
30
29
|
is_utilized: boolean;
|
|
31
30
|
is_billable: boolean;
|
|
32
31
|
time_limit_per_month: number;
|
|
@@ -49,9 +48,10 @@ export interface ProjectDto {
|
|
|
49
48
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
50
49
|
readonly created_by_data: SimpleUserDto | null;
|
|
51
50
|
readonly updated_by_data: SimpleUserDto | null;
|
|
51
|
+
billing_frequency?: ProjectBillingFrequencyDto;
|
|
52
52
|
has_hosting?: boolean;
|
|
53
53
|
hosting_fee?: string | null;
|
|
54
|
-
hosting_frequency?:
|
|
54
|
+
hosting_frequency?: ProjectHostingFrequencyDto;
|
|
55
55
|
hosting_start?: string | null;
|
|
56
56
|
tech_manager?: number | null;
|
|
57
57
|
qa_manager?: number | null;
|
|
@@ -13,7 +13,7 @@ export interface ProjectsCreateBillingFrequencyErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: ProjectsCreateBillingFrequencyErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `invalid_choice` - invalid_choice * `null` - null
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null
|
|
17
17
|
*/
|
|
18
18
|
code: ProjectsCreateBillingFrequencyErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -23,6 +23,5 @@ export declare enum ProjectsCreateBillingFrequencyErrorComponentDtoAttrEnum {
|
|
|
23
23
|
}
|
|
24
24
|
export declare enum ProjectsCreateBillingFrequencyErrorComponentDtoCodeEnum {
|
|
25
25
|
InvalidChoice = "invalid_choice",
|
|
26
|
-
Null = "null"
|
|
27
|
-
Required = "required"
|
|
26
|
+
Null = "null"
|
|
28
27
|
}
|
|
@@ -13,7 +13,7 @@ export interface ProjectsUpdateBillingFrequencyErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: ProjectsUpdateBillingFrequencyErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `invalid_choice` - invalid_choice * `null` - null
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null
|
|
17
17
|
*/
|
|
18
18
|
code: ProjectsUpdateBillingFrequencyErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -23,6 +23,5 @@ export declare enum ProjectsUpdateBillingFrequencyErrorComponentDtoAttrEnum {
|
|
|
23
23
|
}
|
|
24
24
|
export declare enum ProjectsUpdateBillingFrequencyErrorComponentDtoCodeEnum {
|
|
25
25
|
InvalidChoice = "invalid_choice",
|
|
26
|
-
Null = "null"
|
|
27
|
-
Required = "required"
|
|
26
|
+
Null = "null"
|
|
28
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.17)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|