@saritasa/crm-delmar-core-sdk 0.0.283 → 0.0.284
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/api/api.d.ts +4 -1
- package/api/user-period-approvers-api.service.d.ts +33 -0
- package/api/user-period-approvers-api.serviceInterface.d.ts +25 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +75 -24
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +0 -1
- package/model/profile-request.dto.d.ts +0 -4
- package/model/profile-update-error.dto.d.ts +1 -2
- package/model/profile.dto.d.ts +4 -4
- package/package.json +2 -2
- package/model/profile-update-jira-account-id-error-component.dto.d.ts +0 -31
package/model/models.d.ts
CHANGED
|
@@ -894,7 +894,6 @@ 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";
|
|
898
897
|
export * from "./profile-update-last-name-error-component.dto";
|
|
899
898
|
export * from "./profile-update-location-error-component.dto";
|
|
900
899
|
export * from "./profile-update-middle-name-error-component.dto";
|
|
@@ -25,10 +25,6 @@ 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;
|
|
32
28
|
created_by?: number | null;
|
|
33
29
|
updated_by?: number | null;
|
|
34
30
|
}
|
|
@@ -20,7 +20,6 @@ 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";
|
|
24
23
|
import { ProfileUpdateLocationErrorComponentDto } from "./profile-update-location-error-component.dto";
|
|
25
24
|
import { ProfileUpdateBirthdayErrorComponentDto } from "./profile-update-birthday-error-component.dto";
|
|
26
25
|
import { ProfileUpdateGithubUsernameErrorComponentDto } from "./profile-update-github-username-error-component.dto";
|
|
@@ -29,4 +28,4 @@ import { ProfileUpdateNonFieldErrorsErrorComponentDto } from "./profile-update-n
|
|
|
29
28
|
* @type ProfileUpdateErrorDto
|
|
30
29
|
* @export
|
|
31
30
|
*/
|
|
32
|
-
export type ProfileUpdateErrorDto = ProfileUpdateAvatarErrorComponentDto | ProfileUpdateBirthdayErrorComponentDto | ProfileUpdateCreatedByErrorComponentDto | ProfileUpdateFirstNameErrorComponentDto | ProfileUpdateGithubUsernameErrorComponentDto | ProfileUpdateHomePhoneErrorComponentDto |
|
|
31
|
+
export type ProfileUpdateErrorDto = ProfileUpdateAvatarErrorComponentDto | ProfileUpdateBirthdayErrorComponentDto | ProfileUpdateCreatedByErrorComponentDto | ProfileUpdateFirstNameErrorComponentDto | ProfileUpdateGithubUsernameErrorComponentDto | ProfileUpdateHomePhoneErrorComponentDto | ProfileUpdateLastNameErrorComponentDto | ProfileUpdateLocationErrorComponentDto | ProfileUpdateMiddleNameErrorComponentDto | ProfileUpdateNonFieldErrorsErrorComponentDto | ProfileUpdateOfficePhoneErrorComponentDto | ProfileUpdatePersonalEmailErrorComponentDto | ProfileUpdatePersonalPhoneErrorComponentDto | ProfileUpdateSkypeErrorComponentDto | ProfileUpdateSlackIdErrorComponentDto | ProfileUpdateTimezoneErrorComponentDto | ProfileUpdateUpdatedByErrorComponentDto;
|
package/model/profile.dto.d.ts
CHANGED
|
@@ -52,6 +52,10 @@ 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;
|
|
55
59
|
readonly supervisors: Array<number>;
|
|
56
60
|
readonly supervisors_data: Array<SimpleUserDto>;
|
|
57
61
|
readonly supervisees: Array<number>;
|
|
@@ -72,10 +76,6 @@ export interface ProfileDto {
|
|
|
72
76
|
birthday?: string | null;
|
|
73
77
|
timezone?: string;
|
|
74
78
|
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
|
@@ -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.284",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.144)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -1,31 +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 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
|
-
}
|