@saritasa/crm-delmar-core-sdk 0.0.282 → 0.0.283
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/fesm2022/saritasa-crm-delmar-core-sdk.mjs +24 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/profile-request.dto.d.ts +4 -0
- package/model/profile-update-error.dto.d.ts +2 -1
- package/model/profile-update-jira-account-id-error-component.dto.d.ts +31 -0
- package/model/profile.dto.d.ts +4 -4
- package/package.json +1 -1
package/model/models.d.ts
CHANGED
|
@@ -894,6 +894,7 @@ export * from "./profile-update-error-response400.dto";
|
|
|
894
894
|
export * from "./profile-update-first-name-error-component.dto";
|
|
895
895
|
export * from "./profile-update-github-username-error-component.dto";
|
|
896
896
|
export * from "./profile-update-home-phone-error-component.dto";
|
|
897
|
+
export * from "./profile-update-jira-account-id-error-component.dto";
|
|
897
898
|
export * from "./profile-update-last-name-error-component.dto";
|
|
898
899
|
export * from "./profile-update-location-error-component.dto";
|
|
899
900
|
export * from "./profile-update-middle-name-error-component.dto";
|
|
@@ -25,6 +25,10 @@ export interface ProfileRequestDto {
|
|
|
25
25
|
birthday?: string | null;
|
|
26
26
|
timezone?: string;
|
|
27
27
|
location?: number | null;
|
|
28
|
+
/**
|
|
29
|
+
* Account ID of user in Jira. User has only one id no matter the instance
|
|
30
|
+
*/
|
|
31
|
+
jira_account_id?: string | null;
|
|
28
32
|
created_by?: number | null;
|
|
29
33
|
updated_by?: number | null;
|
|
30
34
|
}
|
|
@@ -20,6 +20,7 @@ import { ProfileUpdateOfficePhoneErrorComponentDto } from "./profile-update-offi
|
|
|
20
20
|
import { ProfileUpdateUpdatedByErrorComponentDto } from "./profile-update-updated-by-error-component.dto";
|
|
21
21
|
import { ProfileUpdateFirstNameErrorComponentDto } from "./profile-update-first-name-error-component.dto";
|
|
22
22
|
import { ProfileUpdateAvatarErrorComponentDto } from "./profile-update-avatar-error-component.dto";
|
|
23
|
+
import { ProfileUpdateJiraAccountIdErrorComponentDto } from "./profile-update-jira-account-id-error-component.dto";
|
|
23
24
|
import { ProfileUpdateLocationErrorComponentDto } from "./profile-update-location-error-component.dto";
|
|
24
25
|
import { ProfileUpdateBirthdayErrorComponentDto } from "./profile-update-birthday-error-component.dto";
|
|
25
26
|
import { ProfileUpdateGithubUsernameErrorComponentDto } from "./profile-update-github-username-error-component.dto";
|
|
@@ -28,4 +29,4 @@ import { ProfileUpdateNonFieldErrorsErrorComponentDto } from "./profile-update-n
|
|
|
28
29
|
* @type ProfileUpdateErrorDto
|
|
29
30
|
* @export
|
|
30
31
|
*/
|
|
31
|
-
export type ProfileUpdateErrorDto = ProfileUpdateAvatarErrorComponentDto | ProfileUpdateBirthdayErrorComponentDto | ProfileUpdateCreatedByErrorComponentDto | ProfileUpdateFirstNameErrorComponentDto | ProfileUpdateGithubUsernameErrorComponentDto | ProfileUpdateHomePhoneErrorComponentDto | ProfileUpdateLastNameErrorComponentDto | ProfileUpdateLocationErrorComponentDto | ProfileUpdateMiddleNameErrorComponentDto | ProfileUpdateNonFieldErrorsErrorComponentDto | ProfileUpdateOfficePhoneErrorComponentDto | ProfileUpdatePersonalEmailErrorComponentDto | ProfileUpdatePersonalPhoneErrorComponentDto | ProfileUpdateSkypeErrorComponentDto | ProfileUpdateSlackIdErrorComponentDto | ProfileUpdateTimezoneErrorComponentDto | ProfileUpdateUpdatedByErrorComponentDto;
|
|
32
|
+
export type ProfileUpdateErrorDto = ProfileUpdateAvatarErrorComponentDto | ProfileUpdateBirthdayErrorComponentDto | ProfileUpdateCreatedByErrorComponentDto | ProfileUpdateFirstNameErrorComponentDto | ProfileUpdateGithubUsernameErrorComponentDto | ProfileUpdateHomePhoneErrorComponentDto | ProfileUpdateJiraAccountIdErrorComponentDto | ProfileUpdateLastNameErrorComponentDto | ProfileUpdateLocationErrorComponentDto | ProfileUpdateMiddleNameErrorComponentDto | ProfileUpdateNonFieldErrorsErrorComponentDto | ProfileUpdateOfficePhoneErrorComponentDto | ProfileUpdatePersonalEmailErrorComponentDto | ProfileUpdatePersonalPhoneErrorComponentDto | ProfileUpdateSkypeErrorComponentDto | ProfileUpdateSlackIdErrorComponentDto | ProfileUpdateTimezoneErrorComponentDto | ProfileUpdateUpdatedByErrorComponentDto;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 ProfileUpdateJiraAccountIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `jira_account_id` - jira_account_id
|
|
13
|
+
*/
|
|
14
|
+
attr: ProfileUpdateJiraAccountIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique
|
|
17
|
+
*/
|
|
18
|
+
code: ProfileUpdateJiraAccountIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ProfileUpdateJiraAccountIdErrorComponentDtoAttrEnum {
|
|
22
|
+
JiraAccountId = "jira_account_id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ProfileUpdateJiraAccountIdErrorComponentDtoCodeEnum {
|
|
25
|
+
Blank = "blank",
|
|
26
|
+
Invalid = "invalid",
|
|
27
|
+
MaxLength = "max_length",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed",
|
|
30
|
+
Unique = "unique"
|
|
31
|
+
}
|
package/model/profile.dto.d.ts
CHANGED
|
@@ -52,10 +52,6 @@ export interface ProfileDto {
|
|
|
52
52
|
readonly dismissal_reasons: Array<number>;
|
|
53
53
|
readonly dismissal_reasons_data: Array<DismissalReasonDto>;
|
|
54
54
|
readonly role: number | null;
|
|
55
|
-
/**
|
|
56
|
-
* Account ID of user in Jira. User has only one id no matter the instance
|
|
57
|
-
*/
|
|
58
|
-
readonly jira_account_id: string | null;
|
|
59
55
|
readonly supervisors: Array<number>;
|
|
60
56
|
readonly supervisors_data: Array<SimpleUserDto>;
|
|
61
57
|
readonly supervisees: Array<number>;
|
|
@@ -76,6 +72,10 @@ export interface ProfileDto {
|
|
|
76
72
|
birthday?: string | null;
|
|
77
73
|
timezone?: string;
|
|
78
74
|
location?: number | null;
|
|
75
|
+
/**
|
|
76
|
+
* Account ID of user in Jira. User has only one id no matter the instance
|
|
77
|
+
*/
|
|
78
|
+
jira_account_id?: string | null;
|
|
79
79
|
created_by?: number | null;
|
|
80
80
|
updated_by?: number | null;
|
|
81
81
|
}
|
package/package.json
CHANGED