@saritasa/crm-delmar-core-sdk 0.1.19 → 0.1.21

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 (29) hide show
  1. package/README.md +2 -2
  2. package/api/clients-api.serviceInterface.d.ts +1 -0
  3. package/api/export-margin-report-api.serviceInterface.d.ts +2 -0
  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 +144 -90
  7. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  8. package/model/clients-margin-report-retrieve-account-manager-in-error-component.dto.d.ts +26 -0
  9. package/model/clients-margin-report-retrieve-error.dto.d.ts +2 -1
  10. package/model/models.d.ts +16 -13
  11. package/model/paginated-project-margin-report-list.dto.d.ts +16 -0
  12. 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
  13. 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
  14. package/model/projects-margin-report-list-client-account-manager-error-component.dto.d.ts +26 -0
  15. 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
  16. package/model/{projects-margin-report-retrieve-client-error-component.dto.d.ts → projects-margin-report-list-client-error-component.dto.d.ts} +5 -5
  17. 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
  18. package/model/projects-margin-report-list-error-response400.dto.d.ts +16 -0
  19. package/model/projects-margin-report-list-error.dto.d.ts +25 -0
  20. 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
  21. package/model/projects-margin-report-list-ordering-error-component.dto.d.ts +26 -0
  22. package/model/{projects-margin-report-retrieve-period-error-component.dto.d.ts → projects-margin-report-list-period-error-component.dto.d.ts} +5 -5
  23. 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
  24. 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
  25. package/model/{projects-margin-report-retrieve-validation-error.dto.d.ts → projects-margin-report-list-validation-error.dto.d.ts} +3 -3
  26. package/package.json +2 -2
  27. package/model/projects-margin-report-retrieve-client-account-manager-error-component.dto.d.ts +0 -26
  28. package/model/projects-margin-report-retrieve-error-response400.dto.d.ts +0 -16
  29. package/model/projects-margin-report-retrieve-error.dto.d.ts +0 -24
@@ -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
+ }
@@ -11,9 +11,10 @@ import { ClientsMarginReportRetrievePeriodErrorComponentDto } from "./clients-ma
11
11
  import { ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto } from "./clients-margin-report-retrieve-task-project-billing-type-error-component.dto";
12
12
  import { ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto } from "./clients-margin-report-retrieve-task-project-project-managers-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";
14
15
  import { ClientsMarginReportRetrieveOrderingErrorComponentDto } from "./clients-margin-report-retrieve-ordering-error-component.dto";
15
16
  /**
16
17
  * @type ClientsMarginReportRetrieveErrorDto
17
18
  * @export
18
19
  */
19
- export type ClientsMarginReportRetrieveErrorDto = ClientsMarginReportRetrieveIdInErrorComponentDto | ClientsMarginReportRetrieveOrderingErrorComponentDto | ClientsMarginReportRetrievePeriodErrorComponentDto | ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto | ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto;
20
+ export type ClientsMarginReportRetrieveErrorDto = ClientsMarginReportRetrieveAccountManagerInErrorComponentDto | ClientsMarginReportRetrieveIdInErrorComponentDto | ClientsMarginReportRetrieveOrderingErrorComponentDto | ClientsMarginReportRetrievePeriodErrorComponentDto | ClientsMarginReportRetrieveTaskProjectBillingTypeErrorComponentDto | ClientsMarginReportRetrieveTaskProjectProjectManagersInErrorComponentDto;
package/model/models.d.ts CHANGED
@@ -255,6 +255,7 @@ 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";
@@ -971,6 +972,7 @@ export * from "./paginated-job-report-hourly-list.dto";
971
972
  export * from "./paginated-location-list.dto";
972
973
  export * from "./paginated-notification-list.dto";
973
974
  export * from "./paginated-project-list.dto";
975
+ export * from "./paginated-project-margin-report-list.dto";
974
976
  export * from "./paginated-project-note-list.dto";
975
977
  export * from "./paginated-project-resource-list.dto";
976
978
  export * from "./paginated-project-serializer-with-stats-list.dto";
@@ -1197,19 +1199,20 @@ export * from "./projects-list-project-managers-id-in-error-component.dto";
1197
1199
  export * from "./projects-list-status-error-component.dto";
1198
1200
  export * from "./projects-list-status-in-error-component.dto";
1199
1201
  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";
1202
+ export * from "./projects-margin-report-list-billing-type-error-component.dto";
1203
+ export * from "./projects-margin-report-list-billing-type-in-error-component.dto";
1204
+ export * from "./projects-margin-report-list-client-account-manager-error-component.dto";
1205
+ export * from "./projects-margin-report-list-client-account-manager-in-error-component.dto";
1206
+ export * from "./projects-margin-report-list-client-error-component.dto";
1207
+ export * from "./projects-margin-report-list-client-in-error-component.dto";
1208
+ export * from "./projects-margin-report-list-error.dto";
1209
+ export * from "./projects-margin-report-list-error-response400.dto";
1210
+ export * from "./projects-margin-report-list-id-in-error-component.dto";
1211
+ export * from "./projects-margin-report-list-ordering-error-component.dto";
1212
+ export * from "./projects-margin-report-list-period-error-component.dto";
1213
+ export * from "./projects-margin-report-list-project-managers-error-component.dto";
1214
+ export * from "./projects-margin-report-list-project-managers-in-error-component.dto";
1215
+ export * from "./projects-margin-report-list-validation-error.dto";
1213
1216
  export * from "./projects-status-report-list-billing-type-error-component.dto";
1214
1217
  export * from "./projects-status-report-list-billing-type-in-error-component.dto";
1215
1218
  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
+ }
@@ -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"
@@ -7,21 +7,21 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- export interface ProjectsMarginReportRetrieveProjectManagersInErrorComponentDto {
10
+ export interface ProjectsMarginReportListProjectManagersInErrorComponentDto {
11
11
  /**
12
12
  * * `project_managers__in` - project_managers__in
13
13
  */
14
- attr: ProjectsMarginReportRetrieveProjectManagersInErrorComponentDtoAttrEnum;
14
+ attr: ProjectsMarginReportListProjectManagersInErrorComponentDtoAttrEnum;
15
15
  /**
16
16
  * * `invalid_choice` - invalid_choice * `invalid_list` - invalid_list * `invalid_pk_value` - invalid_pk_value
17
17
  */
18
- code: ProjectsMarginReportRetrieveProjectManagersInErrorComponentDtoCodeEnum;
18
+ code: ProjectsMarginReportListProjectManagersInErrorComponentDtoCodeEnum;
19
19
  detail: string;
20
20
  }
21
- export declare enum ProjectsMarginReportRetrieveProjectManagersInErrorComponentDtoAttrEnum {
21
+ export declare enum ProjectsMarginReportListProjectManagersInErrorComponentDtoAttrEnum {
22
22
  ProjectManagersIn = "project_managers__in"
23
23
  }
24
- export declare enum ProjectsMarginReportRetrieveProjectManagersInErrorComponentDtoCodeEnum {
24
+ export declare enum ProjectsMarginReportListProjectManagersInErrorComponentDtoCodeEnum {
25
25
  InvalidChoice = "invalid_choice",
26
26
  InvalidList = "invalid_list",
27
27
  InvalidPkValue = "invalid_pk_value"
@@ -7,9 +7,9 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { ProjectsMarginReportListErrorDto } from "./projects-margin-report-list-error.dto";
10
11
  import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
11
- import { ProjectsMarginReportRetrieveErrorDto } from "./projects-margin-report-retrieve-error.dto";
12
- export interface ProjectsMarginReportRetrieveValidationErrorDto {
12
+ export interface ProjectsMarginReportListValidationErrorDto {
13
13
  type: ValidationErrorEnumDto;
14
- errors: Array<ProjectsMarginReportRetrieveErrorDto>;
14
+ errors: Array<ProjectsMarginReportListErrorDto>;
15
15
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.1.19",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.17)",
3
+ "version": "0.1.21",
4
+ "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.18)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,26 +0,0 @@
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
- }
@@ -1,16 +0,0 @@
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;
@@ -1,24 +0,0 @@
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;