@saritasa/crm-delmar-core-sdk 0.1.5 → 0.1.7
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/profile-api.service.d.ts +22 -1
- package/api/profile-api.serviceInterface.d.ts +10 -0
- package/api/users-api.service.d.ts +22 -1
- package/api/users-api.serviceInterface.d.ts +11 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +622 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +32 -0
- package/model/patched-patch-profile-request.dto.d.ts +20 -0
- package/model/patched-patch-user-request.dto.d.ts +30 -0
- package/model/profile-partial-update-error-response400.dto.d.ts +16 -0
- package/model/profile-partial-update-error.dto.d.ts +21 -0
- package/model/profile-partial-update-github-username-error-component.dto.d.ts +30 -0
- package/model/profile-partial-update-home-phone-error-component.dto.d.ts +30 -0
- package/model/profile-partial-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/profile-partial-update-personal-email-error-component.dto.d.ts +30 -0
- package/model/profile-partial-update-personal-phone-error-component.dto.d.ts +30 -0
- package/model/profile-partial-update-slack-id-error-component.dto.d.ts +30 -0
- package/model/profile-partial-update-timezone-error-component.dto.d.ts +30 -0
- package/model/profile-partial-update-validation-error.dto.d.ts +15 -0
- package/model/users-partial-update-branch-error-component.dto.d.ts +29 -0
- package/model/users-partial-update-department-error-component.dto.d.ts +29 -0
- package/model/users-partial-update-error-response400.dto.d.ts +16 -0
- package/model/users-partial-update-error.dto.d.ts +31 -0
- package/model/users-partial-update-github-username-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-home-phone-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-is-intern-error-component.dto.d.ts +28 -0
- package/model/users-partial-update-is-part-time-error-component.dto.d.ts +28 -0
- package/model/users-partial-update-is-trainee-error-component.dto.d.ts +28 -0
- package/model/users-partial-update-location-error-component.dto.d.ts +27 -0
- package/model/users-partial-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/users-partial-update-onsite-error-component.dto.d.ts +28 -0
- package/model/users-partial-update-personal-email-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-personal-phone-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-slack-id-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-supervisors-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-timezone-error-component.dto.d.ts +30 -0
- package/model/users-partial-update-utilization-percent-error-component.dto.d.ts +31 -0
- package/model/users-partial-update-validation-error.dto.d.ts +15 -0
- package/model/users-partial-update-work-type-error-component.dto.d.ts +29 -0
- package/package.json +1 -1
|
@@ -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 UsersPartialUpdateLocationErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `location` - location
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateLocationErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateLocationErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateLocationErrorComponentDtoAttrEnum {
|
|
22
|
+
Location = "location"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateLocationErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type"
|
|
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 UsersPartialUpdateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 UsersPartialUpdateOnsiteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `onsite` - onsite
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateOnsiteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateOnsiteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateOnsiteErrorComponentDtoAttrEnum {
|
|
22
|
+
Onsite = "onsite"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateOnsiteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 UsersPartialUpdatePersonalEmailErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `personal_email` - personal_email
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdatePersonalEmailErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdatePersonalEmailErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdatePersonalEmailErrorComponentDtoAttrEnum {
|
|
22
|
+
PersonalEmail = "personal_email"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdatePersonalEmailErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxLength = "max_length",
|
|
27
|
+
Null = "null",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 UsersPartialUpdatePersonalPhoneErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `personal_phone` - personal_phone
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdatePersonalPhoneErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdatePersonalPhoneErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdatePersonalPhoneErrorComponentDtoAttrEnum {
|
|
22
|
+
PersonalPhone = "personal_phone"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdatePersonalPhoneErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxLength = "max_length",
|
|
27
|
+
Null = "null",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 UsersPartialUpdateSlackIdErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `slack_id` - slack_id
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateSlackIdErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateSlackIdErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateSlackIdErrorComponentDtoAttrEnum {
|
|
22
|
+
SlackId = "slack_id"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateSlackIdErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxLength = "max_length",
|
|
27
|
+
Null = "null",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 UsersPartialUpdateSupervisorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `supervisors` - supervisors
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateSupervisorsErrorComponentDtoAttrEnum;
|
|
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: UsersPartialUpdateSupervisorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateSupervisorsErrorComponentDtoAttrEnum {
|
|
22
|
+
Supervisors = "supervisors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateSupervisorsErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type",
|
|
27
|
+
NotAList = "not_a_list",
|
|
28
|
+
Null = "null",
|
|
29
|
+
Required = "required"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 UsersPartialUpdateTimezoneErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `timezone` - timezone
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateTimezoneErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateTimezoneErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateTimezoneErrorComponentDtoAttrEnum {
|
|
22
|
+
Timezone = "timezone"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateTimezoneErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxLength = "max_length",
|
|
27
|
+
Null = "null",
|
|
28
|
+
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
+
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
30
|
+
}
|
|
@@ -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 UsersPartialUpdateUtilizationPercentErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `utilization_percent` - utilization_percent
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateUtilizationPercentErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateUtilizationPercentErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateUtilizationPercentErrorComponentDtoAttrEnum {
|
|
22
|
+
UtilizationPercent = "utilization_percent"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateUtilizationPercentErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
MaxStringLength = "max_string_length",
|
|
27
|
+
MaxValue = "max_value",
|
|
28
|
+
MinValue = "min_value",
|
|
29
|
+
Null = "null",
|
|
30
|
+
Required = "required"
|
|
31
|
+
}
|
|
@@ -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 { UsersPartialUpdateErrorDto } from "./users-partial-update-error.dto";
|
|
12
|
+
export interface UsersPartialUpdateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<UsersPartialUpdateErrorDto>;
|
|
15
|
+
}
|
|
@@ -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 UsersPartialUpdateWorkTypeErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `work_type` - work_type
|
|
13
|
+
*/
|
|
14
|
+
attr: UsersPartialUpdateWorkTypeErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UsersPartialUpdateWorkTypeErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UsersPartialUpdateWorkTypeErrorComponentDtoAttrEnum {
|
|
22
|
+
WorkType = "work_type"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UsersPartialUpdateWorkTypeErrorComponentDtoCodeEnum {
|
|
25
|
+
DoesNotExist = "does_not_exist",
|
|
26
|
+
IncorrectType = "incorrect_type",
|
|
27
|
+
Null = "null",
|
|
28
|
+
Required = "required"
|
|
29
|
+
}
|
package/package.json
CHANGED