@saritasa/crm-delmar-core-sdk 0.0.83 → 0.0.84

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 (53) hide show
  1. package/README.md +2 -2
  2. package/api/projects-api.service.d.ts +8 -8
  3. package/api/projects-api.serviceInterface.d.ts +16 -4
  4. package/esm2022/api/projects-api.service.mjs +50 -2
  5. package/esm2022/api/projects-api.serviceInterface.mjs +1 -1
  6. package/esm2022/model/billing-frequency-enum.dto.mjs +23 -0
  7. package/esm2022/model/billing-type-enum.dto.mjs +20 -0
  8. package/esm2022/model/models.mjs +21 -2
  9. package/esm2022/model/paginated-project-list.dto.mjs +2 -0
  10. package/esm2022/model/project-status-enum.dto.mjs +23 -0
  11. package/esm2022/model/project.dto.mjs +2 -0
  12. package/esm2022/model/projects-list-client-contact-error-component.dto.mjs +18 -0
  13. package/esm2022/model/projects-list-client-contact-in-error-component.dto.mjs +18 -0
  14. package/esm2022/model/projects-list-client-error-component.dto.mjs +18 -0
  15. package/esm2022/model/projects-list-client-in-error-component.dto.mjs +18 -0
  16. package/esm2022/model/projects-list-error-response400.dto.mjs +1 -1
  17. package/esm2022/model/projects-list-error.dto.mjs +2 -0
  18. package/esm2022/model/projects-list-id-error-component.dto.mjs +19 -0
  19. package/esm2022/model/projects-list-id-in-error-component.dto.mjs +19 -0
  20. package/esm2022/model/projects-list-project-managers-id-in-error-component.dto.mjs +19 -0
  21. package/esm2022/model/projects-list-status-error-component.dto.mjs +18 -0
  22. package/esm2022/model/projects-list-status-in-error-component.dto.mjs +18 -0
  23. package/esm2022/model/projects-list-validation-error.dto.mjs +2 -0
  24. package/esm2022/model/simple-client-contact.dto.mjs +11 -0
  25. package/esm2022/model/simple-client.dto.mjs +11 -0
  26. package/esm2022/model/simple-jira-project.dto.mjs +11 -0
  27. package/esm2022/model/simple-project-priority.dto.mjs +11 -0
  28. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +320 -1
  29. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  30. package/model/billing-frequency-enum.dto.d.ts +21 -0
  31. package/model/billing-type-enum.dto.d.ts +18 -0
  32. package/model/models.d.ts +20 -1
  33. package/model/{paginated-simple-project-list.dto.d.ts → paginated-project-list.dto.d.ts} +3 -3
  34. package/model/project-status-enum.dto.d.ts +21 -0
  35. package/model/project.dto.d.ts +68 -0
  36. package/model/projects-list-client-contact-error-component.dto.d.ts +26 -0
  37. package/model/projects-list-client-contact-in-error-component.dto.d.ts +26 -0
  38. package/model/projects-list-client-error-component.dto.d.ts +26 -0
  39. package/model/projects-list-client-in-error-component.dto.d.ts +26 -0
  40. package/model/projects-list-error-response400.dto.d.ts +2 -1
  41. package/model/projects-list-error.dto.d.ts +23 -0
  42. package/model/projects-list-id-error-component.dto.d.ts +27 -0
  43. package/model/projects-list-id-in-error-component.dto.d.ts +27 -0
  44. package/model/projects-list-project-managers-id-in-error-component.dto.d.ts +27 -0
  45. package/model/projects-list-status-error-component.dto.d.ts +26 -0
  46. package/model/projects-list-status-in-error-component.dto.d.ts +26 -0
  47. package/model/projects-list-validation-error.dto.d.ts +15 -0
  48. package/model/simple-client-contact.dto.d.ts +27 -0
  49. package/model/simple-client.dto.d.ts +18 -0
  50. package/model/simple-jira-project.dto.d.ts +18 -0
  51. package/model/simple-project-priority.dto.d.ts +19 -0
  52. package/package.json +2 -2
  53. package/esm2022/model/paginated-simple-project-list.dto.mjs +0 -2
@@ -0,0 +1,21 @@
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
+ * * `unknown` - Unknown * `weekly` - Weekly * `monthly` - Monthly * `bi_monthly` - Bi-monthly * `quarterly` - Quarterly * `annual` - Annual * `scheduled` - Scheduled
12
+ */
13
+ export declare enum BillingFrequencyEnumDto {
14
+ Unknown = "unknown",
15
+ Weekly = "weekly",
16
+ Monthly = "monthly",
17
+ BiMonthly = "bi_monthly",
18
+ Quarterly = "quarterly",
19
+ Annual = "annual",
20
+ Scheduled = "scheduled"
21
+ }
@@ -0,0 +1,18 @@
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
+ * * `investment` - Investment * `fixed` - Fixed * `hourly` - Hourly * `sla` - SLA
12
+ */
13
+ export declare enum BillingTypeEnumDto {
14
+ Investment = "investment",
15
+ Fixed = "fixed",
16
+ Hourly = "hourly",
17
+ Sla = "sla"
18
+ }
package/model/models.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export * from "./billing-frequency-enum.dto";
2
+ export * from "./billing-type-enum.dto";
1
3
  export * from "./branch-change-state-request.dto";
2
4
  export * from "./branch.dto";
3
5
  export * from "./branch-period.dto";
@@ -295,9 +297,9 @@ export * from "./paginated-jira-instance-list.dto";
295
297
  export * from "./paginated-job-list.dto";
296
298
  export * from "./paginated-location-list.dto";
297
299
  export * from "./paginated-notification-list.dto";
300
+ export * from "./paginated-project-list.dto";
298
301
  export * from "./paginated-role-list.dto";
299
302
  export * from "./paginated-simple-dismissal-reason-list.dto";
300
- export * from "./paginated-simple-project-list.dto";
301
303
  export * from "./paginated-simple-vendor-list.dto";
302
304
  export * from "./paginated-task-list.dto";
303
305
  export * from "./paginated-user-capacity-list.dto";
@@ -345,7 +347,20 @@ export * from "./profile-update-slack-id-error-component.dto";
345
347
  export * from "./profile-update-timezone-error-component.dto";
346
348
  export * from "./profile-update-updated-by-error-component.dto";
347
349
  export * from "./profile-update-validation-error.dto";
350
+ export * from "./project.dto";
351
+ export * from "./project-status-enum.dto";
352
+ export * from "./projects-list-client-contact-error-component.dto";
353
+ export * from "./projects-list-client-contact-in-error-component.dto";
354
+ export * from "./projects-list-client-error-component.dto";
355
+ export * from "./projects-list-client-in-error-component.dto";
356
+ export * from "./projects-list-error.dto";
348
357
  export * from "./projects-list-error-response400.dto";
358
+ export * from "./projects-list-id-error-component.dto";
359
+ export * from "./projects-list-id-in-error-component.dto";
360
+ export * from "./projects-list-project-managers-id-in-error-component.dto";
361
+ export * from "./projects-list-status-error-component.dto";
362
+ export * from "./projects-list-status-in-error-component.dto";
363
+ export * from "./projects-list-validation-error.dto";
349
364
  export * from "./projects-retrieve-error-response400.dto";
350
365
  export * from "./role.dto";
351
366
  export * from "./role-edit-permission.dto";
@@ -410,15 +425,19 @@ export * from "./search-periods-list-validation-error.dto";
410
425
  export * from "./server-error-enum.dto";
411
426
  export * from "./simple-branch.dto";
412
427
  export * from "./simple-branch-request.dto";
428
+ export * from "./simple-client-contact.dto";
429
+ export * from "./simple-client.dto";
413
430
  export * from "./simple-component.dto";
414
431
  export * from "./simple-department.dto";
415
432
  export * from "./simple-department-request.dto";
416
433
  export * from "./simple-dismissal-reason.dto";
417
434
  export * from "./simple-dismissal-reason-request.dto";
418
435
  export * from "./simple-dismissal-reason-type-enum.dto";
436
+ export * from "./simple-jira-project.dto";
419
437
  export * from "./simple-location.dto";
420
438
  export * from "./simple-location-request.dto";
421
439
  export * from "./simple-project.dto";
440
+ export * from "./simple-project-priority.dto";
422
441
  export * from "./simple-role.dto";
423
442
  export * from "./simple-role-request.dto";
424
443
  export * from "./simple-sprint.dto";
@@ -7,10 +7,10 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { SimpleProjectDto } from "./simple-project.dto";
11
- export interface PaginatedSimpleProjectListDto {
10
+ import { ProjectDto } from "./project.dto";
11
+ export interface PaginatedProjectListDto {
12
12
  count: number;
13
- results: Array<SimpleProjectDto>;
13
+ results: Array<ProjectDto>;
14
14
  next?: string | null;
15
15
  previous?: string | null;
16
16
  }
@@ -0,0 +1,21 @@
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
+ * * `active` - Active * `cancelled` - Cancelled * `completed` - Completed * `on_hold` - On hold * `bug_fixing` - Bug fixing * `maintenance` - Maintenance * `pre_sale` - Pre sale
12
+ */
13
+ export declare enum ProjectStatusEnumDto {
14
+ Active = "active",
15
+ Cancelled = "cancelled",
16
+ Completed = "completed",
17
+ OnHold = "on_hold",
18
+ BugFixing = "bug_fixing",
19
+ Maintenance = "maintenance",
20
+ PreSale = "pre_sale"
21
+ }
@@ -0,0 +1,68 @@
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 { SimpleJiraProjectDto } from "./simple-jira-project.dto";
11
+ import { SimpleUserDto } from "./simple-user.dto";
12
+ import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
13
+ import { SimpleProjectPriorityDto } from "./simple-project-priority.dto";
14
+ import { BillingTypeEnumDto } from "./billing-type-enum.dto";
15
+ import { SimpleClientDto } from "./simple-client.dto";
16
+ import { SimpleClientContactDto } from "./simple-client-contact.dto";
17
+ import { ProjectStatusEnumDto } from "./project-status-enum.dto";
18
+ /**
19
+ * Serializer for Project model.
20
+ */
21
+ export interface ProjectDto {
22
+ readonly id: number;
23
+ readonly created: string;
24
+ readonly modified: string;
25
+ name: string;
26
+ status: ProjectStatusEnumDto;
27
+ billing_type: BillingTypeEnumDto;
28
+ billing_frequency: BillingFrequencyEnumDto;
29
+ is_utilized: boolean;
30
+ is_billable: boolean;
31
+ readonly tech_manager_data: SimpleUserDto;
32
+ readonly qa_manager_data: SimpleUserDto;
33
+ time_limit_per_month: number;
34
+ time_limit: number;
35
+ /**
36
+ * This is the code used by DevOps team to format project infrastructure. For example, <code>-dev.saritasa.rocks for dev DNS.
37
+ */
38
+ environment_code: string;
39
+ nickname: string;
40
+ readonly created_by: number | null;
41
+ readonly created_by_data: SimpleUserDto;
42
+ readonly updated_by: number | null;
43
+ readonly updated_by_data: SimpleUserDto;
44
+ client: number;
45
+ readonly client_data: SimpleClientDto;
46
+ readonly client_contact_data: SimpleClientContactDto;
47
+ readonly priority_data: SimpleProjectPriorityDto;
48
+ readonly project_managers: Array<number>;
49
+ readonly project_managers_data: Array<SimpleUserDto>;
50
+ jira_links: Array<number>;
51
+ readonly jira_links_data: Array<SimpleJiraProjectDto>;
52
+ tech_manager?: number | null;
53
+ qa_manager?: number | null;
54
+ start_date?: string | null;
55
+ development_start_date?: string | null;
56
+ is_development_started?: boolean;
57
+ proposed_end_date?: string | null;
58
+ actual_end_date?: string | null;
59
+ notes?: string;
60
+ /**
61
+ * Project ID in Zoho CRM
62
+ */
63
+ zoho_id?: string;
64
+ dev_site?: string;
65
+ actual_site?: string;
66
+ client_contact?: number | null;
67
+ priority?: number | null;
68
+ }
@@ -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 ProjectsListClientContactErrorComponentDto {
11
+ /**
12
+ * * `client_contact` - client_contact
13
+ */
14
+ attr: ProjectsListClientContactErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ProjectsListClientContactErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListClientContactErrorComponentDtoAttrEnum {
22
+ ClientContact = "client_contact"
23
+ }
24
+ export declare enum ProjectsListClientContactErrorComponentDtoCodeEnum {
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 ProjectsListClientContactInErrorComponentDto {
11
+ /**
12
+ * * `client_contact__in` - client_contact__in
13
+ */
14
+ attr: ProjectsListClientContactInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ProjectsListClientContactInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListClientContactInErrorComponentDtoAttrEnum {
22
+ ClientContactIn = "client_contact__in"
23
+ }
24
+ export declare enum ProjectsListClientContactInErrorComponentDtoCodeEnum {
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 ProjectsListClientErrorComponentDto {
11
+ /**
12
+ * * `client` - client
13
+ */
14
+ attr: ProjectsListClientErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ProjectsListClientErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListClientErrorComponentDtoAttrEnum {
22
+ Client = "client"
23
+ }
24
+ export declare enum ProjectsListClientErrorComponentDtoCodeEnum {
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 ProjectsListClientInErrorComponentDto {
11
+ /**
12
+ * * `client__in` - client__in
13
+ */
14
+ attr: ProjectsListClientInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ProjectsListClientInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListClientInErrorComponentDtoAttrEnum {
22
+ ClientIn = "client__in"
23
+ }
24
+ export declare enum ProjectsListClientInErrorComponentDtoCodeEnum {
25
+ InvalidChoice = "invalid_choice"
26
+ }
@@ -8,8 +8,9 @@
8
8
  * Do not edit the class manually.
9
9
  */
10
10
  import { ParseErrorResponseDto } from "./parse-error-response.dto";
11
+ import { ProjectsListValidationErrorDto } from "./projects-list-validation-error.dto";
11
12
  /**
12
13
  * @type ProjectsListErrorResponse400Dto
13
14
  * @export
14
15
  */
15
- export type ProjectsListErrorResponse400Dto = ParseErrorResponseDto;
16
+ export type ProjectsListErrorResponse400Dto = ParseErrorResponseDto | ProjectsListValidationErrorDto;
@@ -0,0 +1,23 @@
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 { ProjectsListIdInErrorComponentDto } from "./projects-list-id-in-error-component.dto";
11
+ import { ProjectsListClientErrorComponentDto } from "./projects-list-client-error-component.dto";
12
+ import { ProjectsListClientContactInErrorComponentDto } from "./projects-list-client-contact-in-error-component.dto";
13
+ import { ProjectsListClientInErrorComponentDto } from "./projects-list-client-in-error-component.dto";
14
+ import { ProjectsListStatusInErrorComponentDto } from "./projects-list-status-in-error-component.dto";
15
+ import { ProjectsListIdErrorComponentDto } from "./projects-list-id-error-component.dto";
16
+ import { ProjectsListClientContactErrorComponentDto } from "./projects-list-client-contact-error-component.dto";
17
+ import { ProjectsListStatusErrorComponentDto } from "./projects-list-status-error-component.dto";
18
+ import { ProjectsListProjectManagersIdInErrorComponentDto } from "./projects-list-project-managers-id-in-error-component.dto";
19
+ /**
20
+ * @type ProjectsListErrorDto
21
+ * @export
22
+ */
23
+ export type ProjectsListErrorDto = ProjectsListClientContactErrorComponentDto | ProjectsListClientContactInErrorComponentDto | ProjectsListClientErrorComponentDto | ProjectsListClientInErrorComponentDto | ProjectsListIdErrorComponentDto | ProjectsListIdInErrorComponentDto | ProjectsListProjectManagersIdInErrorComponentDto | ProjectsListStatusErrorComponentDto | ProjectsListStatusInErrorComponentDto;
@@ -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 ProjectsListIdErrorComponentDto {
11
+ /**
12
+ * * `id` - id
13
+ */
14
+ attr: ProjectsListIdErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: ProjectsListIdErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListIdErrorComponentDtoAttrEnum {
22
+ Id = "id"
23
+ }
24
+ export declare enum ProjectsListIdErrorComponentDtoCodeEnum {
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 ProjectsListIdInErrorComponentDto {
11
+ /**
12
+ * * `id__in` - id__in
13
+ */
14
+ attr: ProjectsListIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: ProjectsListIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListIdInErrorComponentDtoAttrEnum {
22
+ IdIn = "id__in"
23
+ }
24
+ export declare enum ProjectsListIdInErrorComponentDtoCodeEnum {
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 ProjectsListProjectManagersIdInErrorComponentDto {
11
+ /**
12
+ * * `project_managers__id__in` - project_managers__id__in
13
+ */
14
+ attr: ProjectsListProjectManagersIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: ProjectsListProjectManagersIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListProjectManagersIdInErrorComponentDtoAttrEnum {
22
+ ProjectManagersIdIn = "project_managers__id__in"
23
+ }
24
+ export declare enum ProjectsListProjectManagersIdInErrorComponentDtoCodeEnum {
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 ProjectsListStatusErrorComponentDto {
11
+ /**
12
+ * * `status` - status
13
+ */
14
+ attr: ProjectsListStatusErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: ProjectsListStatusErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListStatusErrorComponentDtoAttrEnum {
22
+ Status = "status"
23
+ }
24
+ export declare enum ProjectsListStatusErrorComponentDtoCodeEnum {
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 ProjectsListStatusInErrorComponentDto {
11
+ /**
12
+ * * `status__in` - status__in
13
+ */
14
+ attr: ProjectsListStatusInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: ProjectsListStatusInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum ProjectsListStatusInErrorComponentDtoAttrEnum {
22
+ StatusIn = "status__in"
23
+ }
24
+ export declare enum ProjectsListStatusInErrorComponentDtoCodeEnum {
25
+ NullCharactersNotAllowed = "null_characters_not_allowed"
26
+ }
@@ -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 { ValidationErrorEnumDto } from "./validation-error-enum.dto";
11
+ import { ProjectsListErrorDto } from "./projects-list-error.dto";
12
+ export interface ProjectsListValidationErrorDto {
13
+ type: ValidationErrorEnumDto;
14
+ errors: Array<ProjectsListErrorDto>;
15
+ }
@@ -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 for ClientContact model. Contains less information for representing in others APIs.
12
+ */
13
+ export interface SimpleClientContactDto {
14
+ readonly id: number;
15
+ readonly created: string;
16
+ readonly modified: string;
17
+ first_name: string;
18
+ last_name: string;
19
+ email: string;
20
+ phone: string;
21
+ is_primary: boolean;
22
+ middle_name?: string;
23
+ /**
24
+ * Job title for contact\'s owner, like CEO, Manager, etc.
25
+ */
26
+ job_title?: string;
27
+ }
@@ -0,0 +1,18 @@
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 for Client model. Contains less information for representing in others APIs.
12
+ */
13
+ export interface SimpleClientDto {
14
+ readonly id: number;
15
+ readonly created: string;
16
+ readonly modified: string;
17
+ name: string;
18
+ }
@@ -0,0 +1,18 @@
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 for JiraProject model. Contains less information for representing in others APIs.
12
+ */
13
+ export interface SimpleJiraProjectDto {
14
+ readonly id: number;
15
+ readonly created: string;
16
+ readonly modified: string;
17
+ key: string;
18
+ }
@@ -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
+ * Serializer for ProjectPriority model. Contains less information for representing in others APIs.
12
+ */
13
+ export interface SimpleProjectPriorityDto {
14
+ readonly id: number;
15
+ readonly created: string;
16
+ readonly modified: string;
17
+ name: string;
18
+ color: string;
19
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.83",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.62)",
3
+ "version": "0.0.84",
4
+ "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.63)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGVkLXNpbXBsZS1wcm9qZWN0LWxpc3QuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvcGFnaW5hdGVkLXNpbXBsZS1wcm9qZWN0LWxpc3QuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuaW1wb3J0IHsgU2ltcGxlUHJvamVjdER0byB9IGZyb20gXCIuL3NpbXBsZS1wcm9qZWN0LmR0b1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBhZ2luYXRlZFNpbXBsZVByb2plY3RMaXN0RHRvIHtcbiAgY291bnQ6IG51bWJlcjtcbiAgcmVzdWx0czogQXJyYXk8U2ltcGxlUHJvamVjdER0bz47XG4gIG5leHQ/OiBzdHJpbmcgfCBudWxsO1xuICBwcmV2aW91cz86IHN0cmluZyB8IG51bGw7XG59XG4iXX0=