@saritasa/crm-delmar-core-sdk 0.1.20 → 0.1.22

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.
Files changed (38) hide show
  1. package/README.md +2 -2
  2. package/api/clients-api.serviceInterface.d.ts +7 -4
  3. package/api/export-margin-report-api.serviceInterface.d.ts +7 -4
  4. package/api/projects-api.service.d.ts +8 -8
  5. package/api/projects-api.serviceInterface.d.ts +7 -3
  6. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +230 -126
  7. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  8. package/model/client-duration-data.dto.d.ts +9 -6
  9. package/model/client-margin-report.dto.d.ts +9 -6
  10. package/model/clients-margin-report-retrieve-account-manager-in-error-component.dto.d.ts +26 -0
  11. package/model/clients-margin-report-retrieve-error.dto.d.ts +6 -3
  12. package/model/clients-margin-report-retrieve-projects-billing-type-error-component.dto.d.ts +26 -0
  13. package/model/clients-margin-report-retrieve-projects-billing-type-in-error-component.dto.d.ts +26 -0
  14. package/model/clients-margin-report-retrieve-projects-project-managers-id-in-error-component.dto.d.ts +27 -0
  15. package/model/clients-margin-report-retrieve-rounding-type-error-component.dto.d.ts +27 -0
  16. package/model/models.d.ts +20 -15
  17. package/model/paginated-project-margin-report-list.dto.d.ts +16 -0
  18. package/model/project-margin-report.dto.d.ts +9 -6
  19. package/model/{projects-margin-report-retrieve-billing-type-error-component.dto.d.ts → projects-margin-report-list-billing-type-error-component.dto.d.ts} +5 -5
  20. package/model/{projects-margin-report-retrieve-billing-type-in-error-component.dto.d.ts → projects-margin-report-list-billing-type-in-error-component.dto.d.ts} +5 -5
  21. package/model/projects-margin-report-list-client-account-manager-error-component.dto.d.ts +26 -0
  22. package/model/{projects-margin-report-retrieve-client-account-manager-in-error-component.dto.d.ts → projects-margin-report-list-client-account-manager-in-error-component.dto.d.ts} +5 -5
  23. package/model/{projects-margin-report-retrieve-client-error-component.dto.d.ts → projects-margin-report-list-client-error-component.dto.d.ts} +5 -5
  24. package/model/{projects-margin-report-retrieve-client-in-error-component.dto.d.ts → projects-margin-report-list-client-in-error-component.dto.d.ts} +5 -5
  25. package/model/projects-margin-report-list-error-response400.dto.d.ts +16 -0
  26. package/model/projects-margin-report-list-error.dto.d.ts +25 -0
  27. package/model/{projects-margin-report-retrieve-id-in-error-component.dto.d.ts → projects-margin-report-list-id-in-error-component.dto.d.ts} +5 -5
  28. package/model/projects-margin-report-list-ordering-error-component.dto.d.ts +26 -0
  29. package/model/{projects-margin-report-retrieve-period-error-component.dto.d.ts → projects-margin-report-list-period-error-component.dto.d.ts} +5 -5
  30. package/model/{projects-margin-report-retrieve-project-managers-error-component.dto.d.ts → projects-margin-report-list-project-managers-error-component.dto.d.ts} +5 -5
  31. package/model/{projects-margin-report-retrieve-project-managers-in-error-component.dto.d.ts → projects-margin-report-list-project-managers-in-error-component.dto.d.ts} +5 -5
  32. package/model/{projects-margin-report-retrieve-validation-error.dto.d.ts → projects-margin-report-list-validation-error.dto.d.ts} +3 -3
  33. package/package.json +2 -2
  34. package/model/clients-margin-report-retrieve-task-project-billing-type-error-component.dto.d.ts +0 -26
  35. package/model/clients-margin-report-retrieve-task-project-project-managers-in-error-component.dto.d.ts +0 -27
  36. package/model/projects-margin-report-retrieve-client-account-manager-error-component.dto.d.ts +0 -26
  37. package/model/projects-margin-report-retrieve-error-response400.dto.d.ts +0 -16
  38. package/model/projects-margin-report-retrieve-error.dto.d.ts +0 -24
@@ -15,13 +15,16 @@ export interface ClientDurationDataDto {
15
15
  readonly created: string;
16
16
  readonly modified: string;
17
17
  name: string;
18
+ /**
19
+ * Get billable duration.
20
+ */
18
21
  readonly billable_duration: number;
19
- readonly billable_duration_round_half: number;
20
- readonly billable_duration_round_zero: number;
22
+ /**
23
+ * Get unbillable duration.
24
+ */
21
25
  readonly unbillable_duration: number;
22
- readonly unbillable_duration_round_half: number;
23
- readonly unbillable_duration_round_zero: number;
26
+ /**
27
+ * Get total duration.
28
+ */
24
29
  readonly total_duration: number;
25
- readonly total_duration_round_half: number;
26
- readonly total_duration_round_zero: number;
27
30
  }
@@ -12,14 +12,17 @@ import { ClientDurationDataDto } from "./client-duration-data.dto";
12
12
  * Serializer to present total margin report for `Client` instances.
13
13
  */
14
14
  export interface ClientMarginReportDto {
15
+ /**
16
+ * Get billable duration.
17
+ */
15
18
  readonly billable_duration: number;
16
- readonly billable_duration_round_half: number;
17
- readonly billable_duration_round_zero: number;
19
+ /**
20
+ * Get unbillable duration.
21
+ */
18
22
  readonly unbillable_duration: number;
19
- readonly unbillable_duration_round_half: number;
20
- readonly unbillable_duration_round_zero: number;
23
+ /**
24
+ * Get total duration.
25
+ */
21
26
  readonly total_duration: number;
22
- readonly total_duration_round_half: number;
23
- readonly total_duration_round_zero: number;
24
27
  readonly clients: Array<ClientDurationDataDto>;
25
28
  }
@@ -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 ClientsMarginReportRetrieveAccountManagerInErrorComponentDto {
11
+ /**
12
+ * * `account_manager__in` - account_manager__in
13
+ */
14
+ attr: ClientsMarginReportRetrieveAccountManagerInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ClientsMarginReportRetrieveAccountManagerInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ClientsMarginReportRetrieveAccountManagerInErrorComponentDtoAttrEnum {
22
+ AccountManagerIn = "account_manager__in"
23
+ }
24
+ export declare enum ClientsMarginReportRetrieveAccountManagerInErrorComponentDtoCodeEnum {
25
+ InvalidChoice = "invalid_choice"
26
+ }
@@ -7,13 +7,16 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDto } from "./clients-margin-report-retrieve-projects-billing-type-error-component.dto";
10
11
  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";
12
+ import { ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDto } from "./clients-margin-report-retrieve-projects-billing-type-in-error-component.dto";
13
13
  import { ClientsMarginReportRetrieveIdInErrorComponentDto } from "./clients-margin-report-retrieve-id-in-error-component.dto";
14
+ import { ClientsMarginReportRetrieveAccountManagerInErrorComponentDto } from "./clients-margin-report-retrieve-account-manager-in-error-component.dto";
15
+ import { ClientsMarginReportRetrieveRoundingTypeErrorComponentDto } from "./clients-margin-report-retrieve-rounding-type-error-component.dto";
14
16
  import { ClientsMarginReportRetrieveOrderingErrorComponentDto } from "./clients-margin-report-retrieve-ordering-error-component.dto";
17
+ import { ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDto } from "./clients-margin-report-retrieve-projects-project-managers-id-in-error-component.dto";
15
18
  /**
16
19
  * @type ClientsMarginReportRetrieveErrorDto
17
20
  * @export
18
21
  */
19
- export type ClientsMarginReportRetrieveErrorDto = ClientsMarginReportRetrieveIdInErrorComponentDto | ClientsMarginReportRetrieveOrderingErrorComponentDto | ClientsMarginReportRetrievePeriodErrorComponentDto | ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto | ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto;
22
+ export type ClientsMarginReportRetrieveErrorDto = ClientsMarginReportRetrieveAccountManagerInErrorComponentDto | ClientsMarginReportRetrieveIdInErrorComponentDto | ClientsMarginReportRetrieveOrderingErrorComponentDto | ClientsMarginReportRetrievePeriodErrorComponentDto | ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDto | ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDto | ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDto | ClientsMarginReportRetrieveRoundingTypeErrorComponentDto;
@@ -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 ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDto {
11
+ /**
12
+ * * `projects__billing_type` - projects__billing_type
13
+ */
14
+ attr: ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDtoAttrEnum {
22
+ ProjectsBillingType = "projects__billing_type"
23
+ }
24
+ export declare enum ClientsMarginReportRetrieveProjectsBillingTypeErrorComponentDtoCodeEnum {
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 ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDto {
11
+ /**
12
+ * * `projects__billing_type__in` - projects__billing_type__in
13
+ */
14
+ attr: ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDtoAttrEnum {
22
+ ProjectsBillingTypeIn = "projects__billing_type__in"
23
+ }
24
+ export declare enum ClientsMarginReportRetrieveProjectsBillingTypeInErrorComponentDtoCodeEnum {
25
+ NullCharactersNotAllowed = "null_characters_not_allowed"
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 ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDto {
11
+ /**
12
+ * * `projects__project_managers__id__in` - projects__project_managers__id__in
13
+ */
14
+ attr: ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDtoAttrEnum {
22
+ ProjectsProjectManagersIdIn = "projects__project_managers__id__in"
23
+ }
24
+ export declare enum ClientsMarginReportRetrieveProjectsProjectManagersIdInErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -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 ClientsMarginReportRetrieveRoundingTypeErrorComponentDto {
11
+ /**
12
+ * * `rounding_type` - rounding_type
13
+ */
14
+ attr: ClientsMarginReportRetrieveRoundingTypeErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice * `required` - required
17
+ */
18
+ code: ClientsMarginReportRetrieveRoundingTypeErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ClientsMarginReportRetrieveRoundingTypeErrorComponentDtoAttrEnum {
22
+ RoundingType = "rounding_type"
23
+ }
24
+ export declare enum ClientsMarginReportRetrieveRoundingTypeErrorComponentDtoCodeEnum {
25
+ InvalidChoice = "invalid_choice",
26
+ Required = "required"
27
+ }
package/model/models.d.ts CHANGED
@@ -255,13 +255,16 @@ export * from "./clients-list-zip-error-component.dto";
255
255
  export * from "./clients-list-zip-in-error-component.dto";
256
256
  export * from "./clients-list-zoho-account-id-error-component.dto";
257
257
  export * from "./clients-list-zoho-account-id-in-error-component.dto";
258
+ export * from "./clients-margin-report-retrieve-account-manager-in-error-component.dto";
258
259
  export * from "./clients-margin-report-retrieve-error.dto";
259
260
  export * from "./clients-margin-report-retrieve-error-response400.dto";
260
261
  export * from "./clients-margin-report-retrieve-id-in-error-component.dto";
261
262
  export * from "./clients-margin-report-retrieve-ordering-error-component.dto";
262
263
  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";
264
+ export * from "./clients-margin-report-retrieve-projects-billing-type-error-component.dto";
265
+ export * from "./clients-margin-report-retrieve-projects-billing-type-in-error-component.dto";
266
+ export * from "./clients-margin-report-retrieve-projects-project-managers-id-in-error-component.dto";
267
+ export * from "./clients-margin-report-retrieve-rounding-type-error-component.dto";
265
268
  export * from "./clients-margin-report-retrieve-validation-error.dto";
266
269
  export * from "./clients-search-list-account-manager-error-component.dto";
267
270
  export * from "./clients-search-list-account-manager-in-error-component.dto";
@@ -971,6 +974,7 @@ export * from "./paginated-job-report-hourly-list.dto";
971
974
  export * from "./paginated-location-list.dto";
972
975
  export * from "./paginated-notification-list.dto";
973
976
  export * from "./paginated-project-list.dto";
977
+ export * from "./paginated-project-margin-report-list.dto";
974
978
  export * from "./paginated-project-note-list.dto";
975
979
  export * from "./paginated-project-resource-list.dto";
976
980
  export * from "./paginated-project-serializer-with-stats-list.dto";
@@ -1197,19 +1201,20 @@ export * from "./projects-list-project-managers-id-in-error-component.dto";
1197
1201
  export * from "./projects-list-status-error-component.dto";
1198
1202
  export * from "./projects-list-status-in-error-component.dto";
1199
1203
  export * from "./projects-list-validation-error.dto";
1200
- export * from "./projects-margin-report-retrieve-billing-type-error-component.dto";
1201
- export * from "./projects-margin-report-retrieve-billing-type-in-error-component.dto";
1202
- export * from "./projects-margin-report-retrieve-client-account-manager-error-component.dto";
1203
- export * from "./projects-margin-report-retrieve-client-account-manager-in-error-component.dto";
1204
- export * from "./projects-margin-report-retrieve-client-error-component.dto";
1205
- export * from "./projects-margin-report-retrieve-client-in-error-component.dto";
1206
- export * from "./projects-margin-report-retrieve-error.dto";
1207
- export * from "./projects-margin-report-retrieve-error-response400.dto";
1208
- export * from "./projects-margin-report-retrieve-id-in-error-component.dto";
1209
- export * from "./projects-margin-report-retrieve-period-error-component.dto";
1210
- export * from "./projects-margin-report-retrieve-project-managers-error-component.dto";
1211
- export * from "./projects-margin-report-retrieve-project-managers-in-error-component.dto";
1212
- export * from "./projects-margin-report-retrieve-validation-error.dto";
1204
+ export * from "./projects-margin-report-list-billing-type-error-component.dto";
1205
+ export * from "./projects-margin-report-list-billing-type-in-error-component.dto";
1206
+ export * from "./projects-margin-report-list-client-account-manager-error-component.dto";
1207
+ export * from "./projects-margin-report-list-client-account-manager-in-error-component.dto";
1208
+ export * from "./projects-margin-report-list-client-error-component.dto";
1209
+ export * from "./projects-margin-report-list-client-in-error-component.dto";
1210
+ export * from "./projects-margin-report-list-error.dto";
1211
+ export * from "./projects-margin-report-list-error-response400.dto";
1212
+ export * from "./projects-margin-report-list-id-in-error-component.dto";
1213
+ export * from "./projects-margin-report-list-ordering-error-component.dto";
1214
+ export * from "./projects-margin-report-list-period-error-component.dto";
1215
+ export * from "./projects-margin-report-list-project-managers-error-component.dto";
1216
+ export * from "./projects-margin-report-list-project-managers-in-error-component.dto";
1217
+ export * from "./projects-margin-report-list-validation-error.dto";
1213
1218
  export * from "./projects-status-report-list-billing-type-error-component.dto";
1214
1219
  export * from "./projects-status-report-list-billing-type-in-error-component.dto";
1215
1220
  export * from "./projects-status-report-list-client-account-manager-error-component.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 { ProjectMarginReportDto } from "./project-margin-report.dto";
11
+ export interface PaginatedProjectMarginReportListDto {
12
+ count: number;
13
+ results: Array<ProjectMarginReportDto>;
14
+ next?: string | null;
15
+ previous?: string | null;
16
+ }
@@ -20,15 +20,18 @@ export interface ProjectMarginReportDto {
20
20
  readonly modified: string;
21
21
  name: string;
22
22
  billing_type: BillingTypeEnumDto;
23
+ /**
24
+ * Get billable duration.
25
+ */
23
26
  readonly billable_duration: number;
24
- readonly billable_duration_round_half: number;
25
- readonly billable_duration_round_zero: number;
27
+ /**
28
+ * Get unbillable duration.
29
+ */
26
30
  readonly unbillable_duration: number;
27
- readonly unbillable_duration_round_half: number;
28
- readonly unbillable_duration_round_zero: number;
31
+ /**
32
+ * Get total duration.
33
+ */
29
34
  readonly total_duration: number;
30
- readonly total_duration_round_half: number;
31
- readonly total_duration_round_zero: number;
32
35
  readonly priority_data: SimpleProjectPriorityDto | null;
33
36
  billing_frequency?: ProjectBillingFrequencyDto;
34
37
  priority?: number | null;
@@ -7,20 +7,20 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveBillingTypeErrorComponentDto {
10
+ export interface ProjectsMarginReportListBillingTypeErrorComponentDto {
11
11
  /**
12
12
  * * `billing_type` - billing_type
13
13
  */
14
- attr: ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListBillingTypeErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid_choice` - invalid_choice
17
17
  */
18
- code: ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListBillingTypeErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListBillingTypeErrorComponentDtoAttrEnum {
22
22
  BillingType = "billing_type"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveBillingTypeErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListBillingTypeErrorComponentDtoCodeEnum {
25
25
  InvalidChoice = "invalid_choice"
26
26
  }
@@ -7,20 +7,20 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveBillingTypeInErrorComponentDto {
10
+ export interface ProjectsMarginReportListBillingTypeInErrorComponentDto {
11
11
  /**
12
12
  * * `billing_type__in` - billing_type__in
13
13
  */
14
- attr: ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListBillingTypeInErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `null_characters_not_allowed` - null_characters_not_allowed
17
17
  */
18
- code: ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListBillingTypeInErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListBillingTypeInErrorComponentDtoAttrEnum {
22
22
  BillingTypeIn = "billing_type__in"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveBillingTypeInErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListBillingTypeInErrorComponentDtoCodeEnum {
25
25
  NullCharactersNotAllowed = "null_characters_not_allowed"
26
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 ProjectsMarginReportListClientAccountManagerErrorComponentDto {
11
+ /**
12
+ * * `client__account_manager` - client__account_manager
13
+ */
14
+ attr: ProjectsMarginReportListClientAccountManagerErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ProjectsMarginReportListClientAccountManagerErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsMarginReportListClientAccountManagerErrorComponentDtoAttrEnum {
22
+ ClientAccountManager = "client__account_manager"
23
+ }
24
+ export declare enum ProjectsMarginReportListClientAccountManagerErrorComponentDtoCodeEnum {
25
+ InvalidChoice = "invalid_choice"
26
+ }
@@ -7,20 +7,20 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDto {
10
+ export interface ProjectsMarginReportListClientAccountManagerInErrorComponentDto {
11
11
  /**
12
12
  * * `client__account_manager__in` - client__account_manager__in
13
13
  */
14
- attr: ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListClientAccountManagerInErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid_choice` - invalid_choice
17
17
  */
18
- code: ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListClientAccountManagerInErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListClientAccountManagerInErrorComponentDtoAttrEnum {
22
22
  ClientAccountManagerIn = "client__account_manager__in"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveClientAccountManagerInErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListClientAccountManagerInErrorComponentDtoCodeEnum {
25
25
  InvalidChoice = "invalid_choice"
26
26
  }
@@ -7,20 +7,20 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveClientErrorComponentDto {
10
+ export interface ProjectsMarginReportListClientErrorComponentDto {
11
11
  /**
12
12
  * * `client` - client
13
13
  */
14
- attr: ProjectsMarginReportRetrieveClientErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListClientErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid_choice` - invalid_choice
17
17
  */
18
- code: ProjectsMarginReportRetrieveClientErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListClientErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveClientErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListClientErrorComponentDtoAttrEnum {
22
22
  Client = "client"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveClientErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListClientErrorComponentDtoCodeEnum {
25
25
  InvalidChoice = "invalid_choice"
26
26
  }
@@ -7,20 +7,20 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveClientInErrorComponentDto {
10
+ export interface ProjectsMarginReportListClientInErrorComponentDto {
11
11
  /**
12
12
  * * `client__in` - client__in
13
13
  */
14
- attr: ProjectsMarginReportRetrieveClientInErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListClientInErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid_choice` - invalid_choice
17
17
  */
18
- code: ProjectsMarginReportRetrieveClientInErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListClientInErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveClientInErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListClientInErrorComponentDtoAttrEnum {
22
22
  ClientIn = "client__in"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveClientInErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListClientInErrorComponentDtoCodeEnum {
25
25
  InvalidChoice = "invalid_choice"
26
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 { ProjectsMarginReportListValidationErrorDto } from "./projects-margin-report-list-validation-error.dto";
12
+ /**
13
+ * @type ProjectsMarginReportListErrorResponse400Dto
14
+ * @export
15
+ */
16
+ export type ProjectsMarginReportListErrorResponse400Dto = ParseErrorResponseDto | ProjectsMarginReportListValidationErrorDto;
@@ -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 { ProjectsMarginReportListProjectManagersErrorComponentDto } from "./projects-margin-report-list-project-managers-error-component.dto";
11
+ import { ProjectsMarginReportListProjectManagersInErrorComponentDto } from "./projects-margin-report-list-project-managers-in-error-component.dto";
12
+ import { ProjectsMarginReportListPeriodErrorComponentDto } from "./projects-margin-report-list-period-error-component.dto";
13
+ import { ProjectsMarginReportListBillingTypeInErrorComponentDto } from "./projects-margin-report-list-billing-type-in-error-component.dto";
14
+ import { ProjectsMarginReportListClientAccountManagerErrorComponentDto } from "./projects-margin-report-list-client-account-manager-error-component.dto";
15
+ import { ProjectsMarginReportListClientAccountManagerInErrorComponentDto } from "./projects-margin-report-list-client-account-manager-in-error-component.dto";
16
+ import { ProjectsMarginReportListClientInErrorComponentDto } from "./projects-margin-report-list-client-in-error-component.dto";
17
+ import { ProjectsMarginReportListClientErrorComponentDto } from "./projects-margin-report-list-client-error-component.dto";
18
+ import { ProjectsMarginReportListOrderingErrorComponentDto } from "./projects-margin-report-list-ordering-error-component.dto";
19
+ import { ProjectsMarginReportListBillingTypeErrorComponentDto } from "./projects-margin-report-list-billing-type-error-component.dto";
20
+ import { ProjectsMarginReportListIdInErrorComponentDto } from "./projects-margin-report-list-id-in-error-component.dto";
21
+ /**
22
+ * @type ProjectsMarginReportListErrorDto
23
+ * @export
24
+ */
25
+ export type ProjectsMarginReportListErrorDto = ProjectsMarginReportListBillingTypeErrorComponentDto | ProjectsMarginReportListBillingTypeInErrorComponentDto | ProjectsMarginReportListClientAccountManagerErrorComponentDto | ProjectsMarginReportListClientAccountManagerInErrorComponentDto | ProjectsMarginReportListClientErrorComponentDto | ProjectsMarginReportListClientInErrorComponentDto | ProjectsMarginReportListIdInErrorComponentDto | ProjectsMarginReportListOrderingErrorComponentDto | ProjectsMarginReportListPeriodErrorComponentDto | ProjectsMarginReportListProjectManagersErrorComponentDto | ProjectsMarginReportListProjectManagersInErrorComponentDto;
@@ -7,21 +7,21 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveIdInErrorComponentDto {
10
+ export interface ProjectsMarginReportListIdInErrorComponentDto {
11
11
  /**
12
12
  * * `id__in` - id__in
13
13
  */
14
- attr: ProjectsMarginReportRetrieveIdInErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListIdInErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid` - invalid * `max_value` - max_value
17
17
  */
18
- code: ProjectsMarginReportRetrieveIdInErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListIdInErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveIdInErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListIdInErrorComponentDtoAttrEnum {
22
22
  IdIn = "id__in"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveIdInErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListIdInErrorComponentDtoCodeEnum {
25
25
  Invalid = "invalid",
26
26
  MaxValue = "max_value"
27
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 ProjectsMarginReportListOrderingErrorComponentDto {
11
+ /**
12
+ * * `ordering` - ordering
13
+ */
14
+ attr: ProjectsMarginReportListOrderingErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: ProjectsMarginReportListOrderingErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsMarginReportListOrderingErrorComponentDtoAttrEnum {
22
+ Ordering = "ordering"
23
+ }
24
+ export declare enum ProjectsMarginReportListOrderingErrorComponentDtoCodeEnum {
25
+ NullCharactersNotAllowed = "null_characters_not_allowed"
26
+ }
@@ -7,21 +7,21 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrievePeriodErrorComponentDto {
10
+ export interface ProjectsMarginReportListPeriodErrorComponentDto {
11
11
  /**
12
12
  * * `period` - period
13
13
  */
14
- attr: ProjectsMarginReportRetrievePeriodErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListPeriodErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid` - invalid * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required
17
17
  */
18
- code: ProjectsMarginReportRetrievePeriodErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListPeriodErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrievePeriodErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListPeriodErrorComponentDtoAttrEnum {
22
22
  Period = "period"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrievePeriodErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListPeriodErrorComponentDtoCodeEnum {
25
25
  Invalid = "invalid",
26
26
  NullCharactersNotAllowed = "null_characters_not_allowed",
27
27
  Required = "required"
@@ -7,21 +7,21 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveProjectManagersErrorComponentDto {
10
+ export interface ProjectsMarginReportListProjectManagersErrorComponentDto {
11
11
  /**
12
12
  * * `project_managers` - project_managers
13
13
  */
14
- attr: ProjectsMarginReportRetrieveProjectManagersErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListProjectManagersErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid_choice` - invalid_choice * `invalid_list` - invalid_list * `invalid_pk_value` - invalid_pk_value
17
17
  */
18
- code: ProjectsMarginReportRetrieveProjectManagersErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListProjectManagersErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveProjectManagersErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListProjectManagersErrorComponentDtoAttrEnum {
22
22
  ProjectManagers = "project_managers"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveProjectManagersErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListProjectManagersErrorComponentDtoCodeEnum {
25
25
  InvalidChoice = "invalid_choice",
26
26
  InvalidList = "invalid_list",
27
27
  InvalidPkValue = "invalid_pk_value"