@saritasa/crm-delmar-core-sdk 0.0.72 → 0.0.74
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/config-enum.dto.mjs +3 -3
- package/esm2022/model/profile-request.dto.mjs +1 -1
- package/esm2022/model/profile-update-location-error-component.dto.mjs +1 -3
- package/esm2022/model/profile.dto.mjs +1 -1
- package/esm2022/model/user-request.dto.mjs +1 -1
- package/esm2022/model/user.dto.mjs +1 -1
- package/esm2022/model/users-create-location-error-component.dto.mjs +1 -2
- package/esm2022/model/users-update-location-error-component.dto.mjs +1 -2
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +2 -6
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/config-enum.dto.d.ts +2 -2
- package/model/profile-request.dto.d.ts +1 -1
- package/model/profile-update-location-error-component.dto.d.ts +2 -4
- package/model/profile.dto.d.ts +1 -1
- package/model/user-request.dto.d.ts +1 -1
- package/model/user.dto.d.ts +1 -1
- package/model/users-create-location-error-component.dto.d.ts +1 -2
- package/model/users-update-location-error-component.dto.d.ts +1 -2
- package/package.json +2 -2
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `
|
|
11
|
+
* * `branch-icon` - branch-icon * `location-icon` - location-icon * `user-avatar` - user-avatar * `user-period-file` - user-period-file * `client-project-note-files` - client-project-note-files
|
|
12
12
|
*/
|
|
13
13
|
export declare enum ConfigEnumDto {
|
|
14
|
-
UserAvatar = "user-avatar",
|
|
15
14
|
BranchIcon = "branch-icon",
|
|
16
15
|
LocationIcon = "location-icon",
|
|
16
|
+
UserAvatar = "user-avatar",
|
|
17
17
|
UserPeriodFile = "user-period-file",
|
|
18
18
|
ClientProjectNoteFiles = "client-project-note-files"
|
|
19
19
|
}
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
export interface ProfileRequestDto {
|
|
14
14
|
first_name: string;
|
|
15
15
|
last_name: string;
|
|
16
|
-
location: number;
|
|
17
16
|
middle_name?: string;
|
|
18
17
|
avatar?: string | null;
|
|
19
18
|
office_phone?: string;
|
|
@@ -25,6 +24,7 @@ export interface ProfileRequestDto {
|
|
|
25
24
|
github_username?: string;
|
|
26
25
|
birthday?: string | null;
|
|
27
26
|
timezone?: string;
|
|
27
|
+
location?: number | null;
|
|
28
28
|
created_by?: number | null;
|
|
29
29
|
updated_by?: number | null;
|
|
30
30
|
}
|
|
@@ -13,7 +13,7 @@ export interface ProfileUpdateLocationErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: ProfileUpdateLocationErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type
|
|
17
17
|
*/
|
|
18
18
|
code: ProfileUpdateLocationErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -23,7 +23,5 @@ export declare enum ProfileUpdateLocationErrorComponentDtoAttrEnum {
|
|
|
23
23
|
}
|
|
24
24
|
export declare enum ProfileUpdateLocationErrorComponentDtoCodeEnum {
|
|
25
25
|
DoesNotExist = "does_not_exist",
|
|
26
|
-
IncorrectType = "incorrect_type"
|
|
27
|
-
Null = "null",
|
|
28
|
-
Required = "required"
|
|
26
|
+
IncorrectType = "incorrect_type"
|
|
29
27
|
}
|
package/model/profile.dto.d.ts
CHANGED
|
@@ -43,7 +43,6 @@ export interface ProfileDto {
|
|
|
43
43
|
readonly department_data: SimpleDepartmentDto;
|
|
44
44
|
readonly work_type: number;
|
|
45
45
|
readonly work_type_data: SimpleWorkTypeDto;
|
|
46
|
-
location: number;
|
|
47
46
|
readonly location_data: SimpleLocationDto;
|
|
48
47
|
readonly vendor: number | null;
|
|
49
48
|
readonly vendor_data: SimpleVendorDto;
|
|
@@ -73,6 +72,7 @@ export interface ProfileDto {
|
|
|
73
72
|
github_username?: string;
|
|
74
73
|
birthday?: string | null;
|
|
75
74
|
timezone?: string;
|
|
75
|
+
location?: number | null;
|
|
76
76
|
created_by?: number | null;
|
|
77
77
|
updated_by?: number | null;
|
|
78
78
|
}
|
package/model/user.dto.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface UserDto {
|
|
|
41
41
|
readonly department_data: SimpleDepartmentDto;
|
|
42
42
|
work_type: number;
|
|
43
43
|
readonly work_type_data: SimpleWorkTypeDto;
|
|
44
|
-
location: number;
|
|
44
|
+
location: number | null;
|
|
45
45
|
readonly location_data: SimpleLocationDto;
|
|
46
46
|
readonly vendor_data: SimpleVendorDto;
|
|
47
47
|
readonly recruited_by_data: SimpleUserDto;
|
|
@@ -13,7 +13,7 @@ export interface UsersCreateLocationErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: UsersCreateLocationErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `required` - required
|
|
17
17
|
*/
|
|
18
18
|
code: UsersCreateLocationErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -24,6 +24,5 @@ export declare enum UsersCreateLocationErrorComponentDtoAttrEnum {
|
|
|
24
24
|
export declare enum UsersCreateLocationErrorComponentDtoCodeEnum {
|
|
25
25
|
DoesNotExist = "does_not_exist",
|
|
26
26
|
IncorrectType = "incorrect_type",
|
|
27
|
-
Null = "null",
|
|
28
27
|
Required = "required"
|
|
29
28
|
}
|
|
@@ -13,7 +13,7 @@ export interface UsersUpdateLocationErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: UsersUpdateLocationErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `required` - required
|
|
17
17
|
*/
|
|
18
18
|
code: UsersUpdateLocationErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -24,6 +24,5 @@ export declare enum UsersUpdateLocationErrorComponentDtoAttrEnum {
|
|
|
24
24
|
export declare enum UsersUpdateLocationErrorComponentDtoCodeEnum {
|
|
25
25
|
DoesNotExist = "does_not_exist",
|
|
26
26
|
IncorrectType = "incorrect_type",
|
|
27
|
-
Null = "null",
|
|
28
27
|
Required = "required"
|
|
29
28
|
}
|
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.74",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.56)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|