@saritasa/crm-delmar-core-sdk 0.0.212 → 0.0.213
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/esm2022/model/models.mjs +9 -3
- package/esm2022/model/project-request.dto.mjs +1 -1
- package/esm2022/model/project-serializer-with-stats.dto.mjs +1 -1
- package/esm2022/model/project.dto.mjs +1 -1
- package/esm2022/model/projects-create-error.dto.mjs +1 -1
- package/esm2022/model/projects-create-jira-link-instance-error-component.dto.mjs +21 -0
- package/esm2022/model/projects-create-jira-link-key-error-component.dto.mjs +24 -0
- package/esm2022/model/projects-create-jira-link-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/projects-update-error.dto.mjs +1 -1
- package/esm2022/model/projects-update-jira-link-instance-error-component.dto.mjs +21 -0
- package/esm2022/model/projects-update-jira-link-key-error-component.dto.mjs +24 -0
- package/esm2022/model/projects-update-jira-link-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/simple-jira-instance-request.dto.mjs +11 -0
- package/esm2022/model/simple-jira-instance.dto.mjs +11 -0
- package/esm2022/model/simple-jira-project-request.dto.mjs +1 -1
- package/esm2022/model/simple-jira-project.dto.mjs +1 -10
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +119 -25
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +8 -2
- package/model/project-request.dto.d.ts +2 -1
- package/model/project-serializer-with-stats.dto.d.ts +1 -2
- package/model/project.dto.d.ts +1 -2
- package/model/projects-create-error.dto.d.ts +4 -2
- package/model/projects-create-jira-link-instance-error-component.dto.d.ts +29 -0
- package/model/projects-create-jira-link-key-error-component.dto.d.ts +32 -0
- package/model/projects-create-jira-link-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/projects-update-error.dto.d.ts +4 -2
- package/model/projects-update-jira-link-instance-error-component.dto.d.ts +29 -0
- package/model/projects-update-jira-link-key-error-component.dto.d.ts +32 -0
- package/model/projects-update-jira-link-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/simple-jira-instance-request.dto.d.ts +15 -0
- package/model/simple-jira-instance.dto.d.ts +16 -0
- package/model/simple-jira-project-request.dto.d.ts +1 -0
- package/model/simple-jira-project.dto.d.ts +3 -0
- package/package.json +2 -2
- package/esm2022/model/projects-create-jira-links-error-component.dto.mjs +0 -22
- package/esm2022/model/projects-update-jira-links-error-component.dto.mjs +0 -22
- package/model/projects-create-jira-links-error-component.dto.d.ts +0 -30
- package/model/projects-update-jira-links-error-component.dto.d.ts +0 -30
package/model/models.d.ts
CHANGED
|
@@ -952,7 +952,9 @@ export * from "./projects-create-error-response400.dto";
|
|
|
952
952
|
export * from "./projects-create-is-billable-error-component.dto";
|
|
953
953
|
export * from "./projects-create-is-development-started-error-component.dto";
|
|
954
954
|
export * from "./projects-create-is-utilized-error-component.dto";
|
|
955
|
-
export * from "./projects-create-jira-
|
|
955
|
+
export * from "./projects-create-jira-link-instance-error-component.dto";
|
|
956
|
+
export * from "./projects-create-jira-link-key-error-component.dto";
|
|
957
|
+
export * from "./projects-create-jira-link-non-field-errors-error-component.dto";
|
|
956
958
|
export * from "./projects-create-name-error-component.dto";
|
|
957
959
|
export * from "./projects-create-nickname-error-component.dto";
|
|
958
960
|
export * from "./projects-create-non-field-errors-error-component.dto";
|
|
@@ -995,7 +997,9 @@ export * from "./projects-update-error-response400.dto";
|
|
|
995
997
|
export * from "./projects-update-is-billable-error-component.dto";
|
|
996
998
|
export * from "./projects-update-is-development-started-error-component.dto";
|
|
997
999
|
export * from "./projects-update-is-utilized-error-component.dto";
|
|
998
|
-
export * from "./projects-update-jira-
|
|
1000
|
+
export * from "./projects-update-jira-link-instance-error-component.dto";
|
|
1001
|
+
export * from "./projects-update-jira-link-key-error-component.dto";
|
|
1002
|
+
export * from "./projects-update-jira-link-non-field-errors-error-component.dto";
|
|
999
1003
|
export * from "./projects-update-name-error-component.dto";
|
|
1000
1004
|
export * from "./projects-update-nickname-error-component.dto";
|
|
1001
1005
|
export * from "./projects-update-non-field-errors-error-component.dto";
|
|
@@ -1096,6 +1100,8 @@ export * from "./simple-client-request.dto";
|
|
|
1096
1100
|
export * from "./simple-component.dto";
|
|
1097
1101
|
export * from "./simple-department.dto";
|
|
1098
1102
|
export * from "./simple-department-request.dto";
|
|
1103
|
+
export * from "./simple-jira-instance.dto";
|
|
1104
|
+
export * from "./simple-jira-instance-request.dto";
|
|
1099
1105
|
export * from "./simple-jira-project.dto";
|
|
1100
1106
|
export * from "./simple-jira-project-request.dto";
|
|
1101
1107
|
export * from "./simple-location.dto";
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { SimpleJiraProjectRequestDto } from "./simple-jira-project-request.dto";
|
|
10
11
|
import { BillingFrequencyEnumDto } from "./billing-frequency-enum.dto";
|
|
11
12
|
import { BillingTypeEnumDto } from "./billing-type-enum.dto";
|
|
12
13
|
import { ProjectStatusEnumDto } from "./project-status-enum.dto";
|
|
@@ -29,7 +30,7 @@ export interface ProjectRequestDto {
|
|
|
29
30
|
nickname: string;
|
|
30
31
|
client: number;
|
|
31
32
|
project_managers: Array<number>;
|
|
32
|
-
|
|
33
|
+
jira_link: SimpleJiraProjectRequestDto | null;
|
|
33
34
|
tech_manager?: number | null;
|
|
34
35
|
qa_manager?: number | null;
|
|
35
36
|
start_date?: string | null;
|
|
@@ -47,8 +47,7 @@ export interface ProjectSerializerWithStatsDto {
|
|
|
47
47
|
readonly priority_data: SimpleProjectPriorityDto;
|
|
48
48
|
readonly project_managers: Array<number>;
|
|
49
49
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
50
|
-
|
|
51
|
-
readonly jira_links_data: Array<SimpleJiraProjectDto>;
|
|
50
|
+
jira_link: SimpleJiraProjectDto | null;
|
|
52
51
|
readonly billable_tasks_count: number;
|
|
53
52
|
readonly unbillable_tasks_count: number;
|
|
54
53
|
readonly billable_jobs_count: number;
|
package/model/project.dto.d.ts
CHANGED
|
@@ -47,8 +47,7 @@ export interface ProjectDto {
|
|
|
47
47
|
readonly priority_data: SimpleProjectPriorityDto;
|
|
48
48
|
project_managers: Array<number>;
|
|
49
49
|
readonly project_managers_data: Array<SimpleUserDto>;
|
|
50
|
-
|
|
51
|
-
readonly jira_links_data: Array<SimpleJiraProjectDto>;
|
|
50
|
+
jira_link: SimpleJiraProjectDto | null;
|
|
52
51
|
tech_manager?: number | null;
|
|
53
52
|
qa_manager?: number | null;
|
|
54
53
|
start_date?: string | null;
|
|
@@ -12,9 +12,9 @@ import { ProjectsCreateDevelopmentStartDateErrorComponentDto } from "./projects-
|
|
|
12
12
|
import { ProjectsCreateNotesErrorComponentDto } from "./projects-create-notes-error-component.dto";
|
|
13
13
|
import { ProjectsCreateActualEndDateErrorComponentDto } from "./projects-create-actual-end-date-error-component.dto";
|
|
14
14
|
import { ProjectsCreateActualSiteErrorComponentDto } from "./projects-create-actual-site-error-component.dto";
|
|
15
|
-
import { ProjectsCreateJiraLinksErrorComponentDto } from "./projects-create-jira-links-error-component.dto";
|
|
16
15
|
import { ProjectsCreateZohoIdErrorComponentDto } from "./projects-create-zoho-id-error-component.dto";
|
|
17
16
|
import { ProjectsCreateIsBillableErrorComponentDto } from "./projects-create-is-billable-error-component.dto";
|
|
17
|
+
import { ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDto } from "./projects-create-jira-link-non-field-errors-error-component.dto";
|
|
18
18
|
import { ProjectsCreateTechManagerErrorComponentDto } from "./projects-create-tech-manager-error-component.dto";
|
|
19
19
|
import { ProjectsCreateStatusErrorComponentDto } from "./projects-create-status-error-component.dto";
|
|
20
20
|
import { ProjectsCreateEnvironmentCodeErrorComponentDto } from "./projects-create-environment-code-error-component.dto";
|
|
@@ -22,10 +22,12 @@ import { ProjectsCreateClientContactErrorComponentDto } from "./projects-create-
|
|
|
22
22
|
import { ProjectsCreateIsUtilizedErrorComponentDto } from "./projects-create-is-utilized-error-component.dto";
|
|
23
23
|
import { ProjectsCreateTimeLimitPerMonthErrorComponentDto } from "./projects-create-time-limit-per-month-error-component.dto";
|
|
24
24
|
import { ProjectsCreateNameErrorComponentDto } from "./projects-create-name-error-component.dto";
|
|
25
|
+
import { ProjectsCreateJiraLinkKeyErrorComponentDto } from "./projects-create-jira-link-key-error-component.dto";
|
|
25
26
|
import { ProjectsCreateTimeLimitErrorComponentDto } from "./projects-create-time-limit-error-component.dto";
|
|
26
27
|
import { ProjectsCreateStartDateErrorComponentDto } from "./projects-create-start-date-error-component.dto";
|
|
27
28
|
import { ProjectsCreateDevSiteErrorComponentDto } from "./projects-create-dev-site-error-component.dto";
|
|
28
29
|
import { ProjectsCreateBillingFrequencyErrorComponentDto } from "./projects-create-billing-frequency-error-component.dto";
|
|
30
|
+
import { ProjectsCreateJiraLinkInstanceErrorComponentDto } from "./projects-create-jira-link-instance-error-component.dto";
|
|
29
31
|
import { ProjectsCreateIsDevelopmentStartedErrorComponentDto } from "./projects-create-is-development-started-error-component.dto";
|
|
30
32
|
import { ProjectsCreateNonFieldErrorsErrorComponentDto } from "./projects-create-non-field-errors-error-component.dto";
|
|
31
33
|
import { ProjectsCreateQaManagerErrorComponentDto } from "./projects-create-qa-manager-error-component.dto";
|
|
@@ -38,4 +40,4 @@ import { ProjectsCreateProjectManagersErrorComponentDto } from "./projects-creat
|
|
|
38
40
|
* @type ProjectsCreateErrorDto
|
|
39
41
|
* @export
|
|
40
42
|
*/
|
|
41
|
-
export type ProjectsCreateErrorDto = ProjectsCreateActualEndDateErrorComponentDto | ProjectsCreateActualSiteErrorComponentDto | ProjectsCreateBillingFrequencyErrorComponentDto | ProjectsCreateBillingTypeErrorComponentDto | ProjectsCreateClientContactErrorComponentDto | ProjectsCreateClientErrorComponentDto | ProjectsCreateDevSiteErrorComponentDto | ProjectsCreateDevelopmentStartDateErrorComponentDto | ProjectsCreateEnvironmentCodeErrorComponentDto | ProjectsCreateIsBillableErrorComponentDto | ProjectsCreateIsDevelopmentStartedErrorComponentDto | ProjectsCreateIsUtilizedErrorComponentDto |
|
|
43
|
+
export type ProjectsCreateErrorDto = ProjectsCreateActualEndDateErrorComponentDto | ProjectsCreateActualSiteErrorComponentDto | ProjectsCreateBillingFrequencyErrorComponentDto | ProjectsCreateBillingTypeErrorComponentDto | ProjectsCreateClientContactErrorComponentDto | ProjectsCreateClientErrorComponentDto | ProjectsCreateDevSiteErrorComponentDto | ProjectsCreateDevelopmentStartDateErrorComponentDto | ProjectsCreateEnvironmentCodeErrorComponentDto | ProjectsCreateIsBillableErrorComponentDto | ProjectsCreateIsDevelopmentStartedErrorComponentDto | ProjectsCreateIsUtilizedErrorComponentDto | ProjectsCreateJiraLinkInstanceErrorComponentDto | ProjectsCreateJiraLinkKeyErrorComponentDto | ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDto | ProjectsCreateNameErrorComponentDto | ProjectsCreateNicknameErrorComponentDto | ProjectsCreateNonFieldErrorsErrorComponentDto | ProjectsCreateNotesErrorComponentDto | ProjectsCreatePriorityErrorComponentDto | ProjectsCreateProjectManagersErrorComponentDto | ProjectsCreateProposedEndDateErrorComponentDto | ProjectsCreateQaManagerErrorComponentDto | ProjectsCreateStartDateErrorComponentDto | ProjectsCreateStatusErrorComponentDto | ProjectsCreateTechManagerErrorComponentDto | ProjectsCreateTimeLimitErrorComponentDto | ProjectsCreateTimeLimitPerMonthErrorComponentDto | ProjectsCreateZohoIdErrorComponentDto;
|
|
@@ -0,0 +1,29 @@
|
|
|
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 ProjectsCreateJiraLinkInstanceErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_link.instance` - jira_link.instance
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsCreateJiraLinkInstanceErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsCreateJiraLinkInstanceErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsCreateJiraLinkInstanceErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraLinkInstance = "jira_link.instance"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsCreateJiraLinkInstanceErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type",
|
|
27
|
+
Null = "null",
|
|
28
|
+
Required = "required"
|
|
29
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 ProjectsCreateJiraLinkKeyErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_link.key` - jira_link.key
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsCreateJiraLinkKeyErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsCreateJiraLinkKeyErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsCreateJiraLinkKeyErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraLinkKey = "jira_link.key"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsCreateJiraLinkKeyErrorComponentDtoCodeEnum {
|
|
25
|
+
Blank = "blank",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
MaxLength = "max_length",
|
|
28
|
+
Null = "null",
|
|
29
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
30
|
+
Required = "required",
|
|
31
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
32
|
+
}
|
|
@@ -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 ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_link.non_field_errors` - jira_link.non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraLinkNonFieldErrors = "jira_link.non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsCreateJiraLinkNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Required = "required"
|
|
27
|
+
}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { ProjectsUpdatePriorityErrorComponentDto } from "./projects-update-priority-error-component.dto";
|
|
11
11
|
import { ProjectsUpdateActualSiteErrorComponentDto } from "./projects-update-actual-site-error-component.dto";
|
|
12
|
-
import { ProjectsUpdateJiraLinksErrorComponentDto } from "./projects-update-jira-links-error-component.dto";
|
|
13
12
|
import { ProjectsUpdateZohoIdErrorComponentDto } from "./projects-update-zoho-id-error-component.dto";
|
|
14
13
|
import { ProjectsUpdateBillingTypeErrorComponentDto } from "./projects-update-billing-type-error-component.dto";
|
|
15
14
|
import { ProjectsUpdateProposedEndDateErrorComponentDto } from "./projects-update-proposed-end-date-error-component.dto";
|
|
@@ -17,9 +16,12 @@ import { ProjectsUpdateBillingFrequencyErrorComponentDto } from "./projects-upda
|
|
|
17
16
|
import { ProjectsUpdateQaManagerErrorComponentDto } from "./projects-update-qa-manager-error-component.dto";
|
|
18
17
|
import { ProjectsUpdateClientContactErrorComponentDto } from "./projects-update-client-contact-error-component.dto";
|
|
19
18
|
import { ProjectsUpdateStartDateErrorComponentDto } from "./projects-update-start-date-error-component.dto";
|
|
19
|
+
import { ProjectsUpdateJiraLinkKeyErrorComponentDto } from "./projects-update-jira-link-key-error-component.dto";
|
|
20
|
+
import { ProjectsUpdateJiraLinkInstanceErrorComponentDto } from "./projects-update-jira-link-instance-error-component.dto";
|
|
20
21
|
import { ProjectsUpdateStatusErrorComponentDto } from "./projects-update-status-error-component.dto";
|
|
21
22
|
import { ProjectsUpdateActualEndDateErrorComponentDto } from "./projects-update-actual-end-date-error-component.dto";
|
|
22
23
|
import { ProjectsUpdateClientErrorComponentDto } from "./projects-update-client-error-component.dto";
|
|
24
|
+
import { ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDto } from "./projects-update-jira-link-non-field-errors-error-component.dto";
|
|
23
25
|
import { ProjectsUpdateNameErrorComponentDto } from "./projects-update-name-error-component.dto";
|
|
24
26
|
import { ProjectsUpdateNicknameErrorComponentDto } from "./projects-update-nickname-error-component.dto";
|
|
25
27
|
import { ProjectsUpdateEnvironmentCodeErrorComponentDto } from "./projects-update-environment-code-error-component.dto";
|
|
@@ -38,4 +40,4 @@ import { ProjectsUpdateTimeLimitErrorComponentDto } from "./projects-update-time
|
|
|
38
40
|
* @type ProjectsUpdateErrorDto
|
|
39
41
|
* @export
|
|
40
42
|
*/
|
|
41
|
-
export type ProjectsUpdateErrorDto = ProjectsUpdateActualEndDateErrorComponentDto | ProjectsUpdateActualSiteErrorComponentDto | ProjectsUpdateBillingFrequencyErrorComponentDto | ProjectsUpdateBillingTypeErrorComponentDto | ProjectsUpdateClientContactErrorComponentDto | ProjectsUpdateClientErrorComponentDto | ProjectsUpdateDevSiteErrorComponentDto | ProjectsUpdateDevelopmentStartDateErrorComponentDto | ProjectsUpdateEnvironmentCodeErrorComponentDto | ProjectsUpdateIsBillableErrorComponentDto | ProjectsUpdateIsDevelopmentStartedErrorComponentDto | ProjectsUpdateIsUtilizedErrorComponentDto |
|
|
43
|
+
export type ProjectsUpdateErrorDto = ProjectsUpdateActualEndDateErrorComponentDto | ProjectsUpdateActualSiteErrorComponentDto | ProjectsUpdateBillingFrequencyErrorComponentDto | ProjectsUpdateBillingTypeErrorComponentDto | ProjectsUpdateClientContactErrorComponentDto | ProjectsUpdateClientErrorComponentDto | ProjectsUpdateDevSiteErrorComponentDto | ProjectsUpdateDevelopmentStartDateErrorComponentDto | ProjectsUpdateEnvironmentCodeErrorComponentDto | ProjectsUpdateIsBillableErrorComponentDto | ProjectsUpdateIsDevelopmentStartedErrorComponentDto | ProjectsUpdateIsUtilizedErrorComponentDto | ProjectsUpdateJiraLinkInstanceErrorComponentDto | ProjectsUpdateJiraLinkKeyErrorComponentDto | ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDto | ProjectsUpdateNameErrorComponentDto | ProjectsUpdateNicknameErrorComponentDto | ProjectsUpdateNonFieldErrorsErrorComponentDto | ProjectsUpdateNotesErrorComponentDto | ProjectsUpdatePriorityErrorComponentDto | ProjectsUpdateProjectManagersErrorComponentDto | ProjectsUpdateProposedEndDateErrorComponentDto | ProjectsUpdateQaManagerErrorComponentDto | ProjectsUpdateStartDateErrorComponentDto | ProjectsUpdateStatusErrorComponentDto | ProjectsUpdateTechManagerErrorComponentDto | ProjectsUpdateTimeLimitErrorComponentDto | ProjectsUpdateTimeLimitPerMonthErrorComponentDto | ProjectsUpdateZohoIdErrorComponentDto;
|
|
@@ -0,0 +1,29 @@
|
|
|
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 ProjectsUpdateJiraLinkInstanceErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_link.instance` - jira_link.instance
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsUpdateJiraLinkInstanceErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsUpdateJiraLinkInstanceErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsUpdateJiraLinkInstanceErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraLinkInstance = "jira_link.instance"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsUpdateJiraLinkInstanceErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type",
|
|
27
|
+
Null = "null",
|
|
28
|
+
Required = "required"
|
|
29
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 ProjectsUpdateJiraLinkKeyErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_link.key` - jira_link.key
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsUpdateJiraLinkKeyErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsUpdateJiraLinkKeyErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsUpdateJiraLinkKeyErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraLinkKey = "jira_link.key"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsUpdateJiraLinkKeyErrorComponentDtoCodeEnum {
|
|
25
|
+
Blank = "blank",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
MaxLength = "max_length",
|
|
28
|
+
Null = "null",
|
|
29
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
30
|
+
Required = "required",
|
|
31
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
32
|
+
}
|
|
@@ -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 ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_link.non_field_errors` - jira_link.non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraLinkNonFieldErrors = "jira_link.non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProjectsUpdateJiraLinkNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Required = "required"
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer for JiraInstance model. Contains less information for representing in others APIs.
|
|
12
|
+
*/
|
|
13
|
+
export interface SimpleJiraInstanceRequestDto {
|
|
14
|
+
name: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer for JiraInstance model. Contains less information for representing in others APIs.
|
|
12
|
+
*/
|
|
13
|
+
export interface SimpleJiraInstanceDto {
|
|
14
|
+
readonly id: number;
|
|
15
|
+
name: string;
|
|
16
|
+
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { SimpleJiraInstanceDto } from "./simple-jira-instance.dto";
|
|
10
11
|
/**
|
|
11
12
|
* Serializer for JiraProject model. Contains less information for representing in others APIs.
|
|
12
13
|
*/
|
|
@@ -15,4 +16,6 @@ export interface SimpleJiraProjectDto {
|
|
|
15
16
|
readonly created: string;
|
|
16
17
|
readonly modified: string;
|
|
17
18
|
key: string;
|
|
19
|
+
instance: number;
|
|
20
|
+
readonly instance_data: SimpleJiraInstanceDto;
|
|
18
21
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.
|
|
3
|
+
"version": "0.0.213",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.119)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -1,22 +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 var ProjectsCreateJiraLinksErrorComponentDtoAttrEnum;
|
|
11
|
-
(function (ProjectsCreateJiraLinksErrorComponentDtoAttrEnum) {
|
|
12
|
-
ProjectsCreateJiraLinksErrorComponentDtoAttrEnum["JiraLinks"] = "jira_links";
|
|
13
|
-
})(ProjectsCreateJiraLinksErrorComponentDtoAttrEnum || (ProjectsCreateJiraLinksErrorComponentDtoAttrEnum = {}));
|
|
14
|
-
export var ProjectsCreateJiraLinksErrorComponentDtoCodeEnum;
|
|
15
|
-
(function (ProjectsCreateJiraLinksErrorComponentDtoCodeEnum) {
|
|
16
|
-
ProjectsCreateJiraLinksErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
-
ProjectsCreateJiraLinksErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
-
ProjectsCreateJiraLinksErrorComponentDtoCodeEnum["NotAList"] = "not_a_list";
|
|
19
|
-
ProjectsCreateJiraLinksErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
-
ProjectsCreateJiraLinksErrorComponentDtoCodeEnum["Required"] = "required";
|
|
21
|
-
})(ProjectsCreateJiraLinksErrorComponentDtoCodeEnum || (ProjectsCreateJiraLinksErrorComponentDtoCodeEnum = {}));
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvamVjdHMtY3JlYXRlLWppcmEtbGlua3MtZXJyb3ItY29tcG9uZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3Byb2plY3RzLWNyZWF0ZS1qaXJhLWxpbmtzLWVycm9yLWNvbXBvbmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0dBUUc7QUFhSCxNQUFNLENBQU4sSUFBWSxnREFFWDtBQUZELFdBQVksZ0RBQWdEO0lBQzFELDRFQUF3QixDQUFBO0FBQzFCLENBQUMsRUFGVyxnREFBZ0QsS0FBaEQsZ0RBQWdELFFBRTNEO0FBQ0QsTUFBTSxDQUFOLElBQVksZ0RBTVg7QUFORCxXQUFZLGdEQUFnRDtJQUMxRCxtRkFBK0IsQ0FBQTtJQUMvQixvRkFBZ0MsQ0FBQTtJQUNoQywyRUFBdUIsQ0FBQTtJQUN2QixpRUFBYSxDQUFBO0lBQ2IseUVBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQU5XLGdEQUFnRCxLQUFoRCxnREFBZ0QsUUFNM0QiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFByb2plY3RzQ3JlYXRlSmlyYUxpbmtzRXJyb3JDb21wb25lbnREdG8ge1xuICAvKipcbiAgICogKiBgamlyYV9saW5rc2AgLSBqaXJhX2xpbmtzXG4gICAqL1xuICBhdHRyOiBQcm9qZWN0c0NyZWF0ZUppcmFMaW5rc0Vycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBkb2VzX25vdF9leGlzdGAgLSBkb2VzX25vdF9leGlzdCAqIGBpbmNvcnJlY3RfdHlwZWAgLSBpbmNvcnJlY3RfdHlwZSAqIGBub3RfYV9saXN0YCAtIG5vdF9hX2xpc3QgKiBgbnVsbGAgLSBudWxsICogYHJlcXVpcmVkYCAtIHJlcXVpcmVkXG4gICAqL1xuICBjb2RlOiBQcm9qZWN0c0NyZWF0ZUppcmFMaW5rc0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gUHJvamVjdHNDcmVhdGVKaXJhTGlua3NFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgSmlyYUxpbmtzID0gXCJqaXJhX2xpbmtzXCIsXG59XG5leHBvcnQgZW51bSBQcm9qZWN0c0NyZWF0ZUppcmFMaW5rc0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBEb2VzTm90RXhpc3QgPSBcImRvZXNfbm90X2V4aXN0XCIsXG4gIEluY29ycmVjdFR5cGUgPSBcImluY29ycmVjdF90eXBlXCIsXG4gIE5vdEFMaXN0ID0gXCJub3RfYV9saXN0XCIsXG4gIE51bGwgPSBcIm51bGxcIixcbiAgUmVxdWlyZWQgPSBcInJlcXVpcmVkXCIsXG59XG4iXX0=
|
|
@@ -1,22 +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 var ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum;
|
|
11
|
-
(function (ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum) {
|
|
12
|
-
ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum["JiraLinks"] = "jira_links";
|
|
13
|
-
})(ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum || (ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum = {}));
|
|
14
|
-
export var ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum;
|
|
15
|
-
(function (ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum) {
|
|
16
|
-
ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
-
ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
-
ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum["NotAList"] = "not_a_list";
|
|
19
|
-
ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
-
ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum["Required"] = "required";
|
|
21
|
-
})(ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum || (ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum = {}));
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvamVjdHMtdXBkYXRlLWppcmEtbGlua3MtZXJyb3ItY29tcG9uZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3Byb2plY3RzLXVwZGF0ZS1qaXJhLWxpbmtzLWVycm9yLWNvbXBvbmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0dBUUc7QUFhSCxNQUFNLENBQU4sSUFBWSxnREFFWDtBQUZELFdBQVksZ0RBQWdEO0lBQzFELDRFQUF3QixDQUFBO0FBQzFCLENBQUMsRUFGVyxnREFBZ0QsS0FBaEQsZ0RBQWdELFFBRTNEO0FBQ0QsTUFBTSxDQUFOLElBQVksZ0RBTVg7QUFORCxXQUFZLGdEQUFnRDtJQUMxRCxtRkFBK0IsQ0FBQTtJQUMvQixvRkFBZ0MsQ0FBQTtJQUNoQywyRUFBdUIsQ0FBQTtJQUN2QixpRUFBYSxDQUFBO0lBQ2IseUVBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQU5XLGdEQUFnRCxLQUFoRCxnREFBZ0QsUUFNM0QiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFByb2plY3RzVXBkYXRlSmlyYUxpbmtzRXJyb3JDb21wb25lbnREdG8ge1xuICAvKipcbiAgICogKiBgamlyYV9saW5rc2AgLSBqaXJhX2xpbmtzXG4gICAqL1xuICBhdHRyOiBQcm9qZWN0c1VwZGF0ZUppcmFMaW5rc0Vycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBkb2VzX25vdF9leGlzdGAgLSBkb2VzX25vdF9leGlzdCAqIGBpbmNvcnJlY3RfdHlwZWAgLSBpbmNvcnJlY3RfdHlwZSAqIGBub3RfYV9saXN0YCAtIG5vdF9hX2xpc3QgKiBgbnVsbGAgLSBudWxsICogYHJlcXVpcmVkYCAtIHJlcXVpcmVkXG4gICAqL1xuICBjb2RlOiBQcm9qZWN0c1VwZGF0ZUppcmFMaW5rc0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gUHJvamVjdHNVcGRhdGVKaXJhTGlua3NFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgSmlyYUxpbmtzID0gXCJqaXJhX2xpbmtzXCIsXG59XG5leHBvcnQgZW51bSBQcm9qZWN0c1VwZGF0ZUppcmFMaW5rc0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBEb2VzTm90RXhpc3QgPSBcImRvZXNfbm90X2V4aXN0XCIsXG4gIEluY29ycmVjdFR5cGUgPSBcImluY29ycmVjdF90eXBlXCIsXG4gIE5vdEFMaXN0ID0gXCJub3RfYV9saXN0XCIsXG4gIE51bGwgPSBcIm51bGxcIixcbiAgUmVxdWlyZWQgPSBcInJlcXVpcmVkXCIsXG59XG4iXX0=
|
|
@@ -1,30 +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 ProjectsCreateJiraLinksErrorComponentDto {
|
|
11
|
-
/**
|
|
12
|
-
* * `jira_links` - jira_links
|
|
13
|
-
*/
|
|
14
|
-
attr: ProjectsCreateJiraLinksErrorComponentDtoAttrEnum;
|
|
15
|
-
/**
|
|
16
|
-
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required
|
|
17
|
-
*/
|
|
18
|
-
code: ProjectsCreateJiraLinksErrorComponentDtoCodeEnum;
|
|
19
|
-
detail: string;
|
|
20
|
-
}
|
|
21
|
-
export declare enum ProjectsCreateJiraLinksErrorComponentDtoAttrEnum {
|
|
22
|
-
JiraLinks = "jira_links"
|
|
23
|
-
}
|
|
24
|
-
export declare enum ProjectsCreateJiraLinksErrorComponentDtoCodeEnum {
|
|
25
|
-
DoesNotExist = "does_not_exist",
|
|
26
|
-
IncorrectType = "incorrect_type",
|
|
27
|
-
NotAList = "not_a_list",
|
|
28
|
-
Null = "null",
|
|
29
|
-
Required = "required"
|
|
30
|
-
}
|
|
@@ -1,30 +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 ProjectsUpdateJiraLinksErrorComponentDto {
|
|
11
|
-
/**
|
|
12
|
-
* * `jira_links` - jira_links
|
|
13
|
-
*/
|
|
14
|
-
attr: ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum;
|
|
15
|
-
/**
|
|
16
|
-
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required
|
|
17
|
-
*/
|
|
18
|
-
code: ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum;
|
|
19
|
-
detail: string;
|
|
20
|
-
}
|
|
21
|
-
export declare enum ProjectsUpdateJiraLinksErrorComponentDtoAttrEnum {
|
|
22
|
-
JiraLinks = "jira_links"
|
|
23
|
-
}
|
|
24
|
-
export declare enum ProjectsUpdateJiraLinksErrorComponentDtoCodeEnum {
|
|
25
|
-
DoesNotExist = "does_not_exist",
|
|
26
|
-
IncorrectType = "incorrect_type",
|
|
27
|
-
NotAList = "not_a_list",
|
|
28
|
-
Null = "null",
|
|
29
|
-
Required = "required"
|
|
30
|
-
}
|