@saritasa/crm-delmar-core-sdk 0.0.44 → 0.0.46
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/user-periods-api.service.d.ts +22 -1
- package/api/user-periods-api.serviceInterface.d.ts +11 -0
- package/esm2022/api/branch-periods-api.service.mjs +3 -3
- package/esm2022/api/branches-api.service.mjs +3 -3
- package/esm2022/api/departments-api.service.mjs +3 -3
- package/esm2022/api/dismissal-reasons-api.service.mjs +3 -3
- package/esm2022/api/jira-client-api.service.mjs +3 -3
- package/esm2022/api/jira-instances-api.service.mjs +3 -3
- package/esm2022/api/locations-api.service.mjs +3 -3
- package/esm2022/api/notifications-api.service.mjs +3 -3
- package/esm2022/api/permission-data-api.service.mjs +3 -3
- package/esm2022/api/profile-api.service.mjs +3 -3
- package/esm2022/api/projects-api.service.mjs +3 -3
- package/esm2022/api/roles-api.service.mjs +3 -3
- package/esm2022/api/s3-api.service.mjs +3 -3
- package/esm2022/api/search-periods-api.service.mjs +3 -3
- package/esm2022/api/sso-api.service.mjs +3 -3
- package/esm2022/api/token-api.service.mjs +3 -3
- package/esm2022/api/user-capacities-api.service.mjs +3 -3
- package/esm2022/api/user-logins-api.service.mjs +3 -3
- package/esm2022/api/user-periods-api.service.mjs +77 -4
- package/esm2022/api/user-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/api/user-timezone-setting-api.service.mjs +3 -3
- package/esm2022/api/user-timezones-api.service.mjs +3 -3
- package/esm2022/api/users-api.service.mjs +3 -3
- package/esm2022/api/vendors-api.service.mjs +3 -3
- package/esm2022/api/who-am-i-api.service.mjs +3 -3
- package/esm2022/api/work-types-api.service.mjs +3 -3
- package/esm2022/api.module.mjs +4 -4
- package/esm2022/model/branch-period-request.dto.mjs +1 -1
- package/esm2022/model/branch-period.dto.mjs +1 -1
- package/esm2022/model/branch-periods-create-description-error-component.dto.mjs +1 -3
- package/esm2022/model/branch-periods-update-description-error-component.dto.mjs +1 -3
- package/esm2022/model/models.mjs +7 -1
- package/esm2022/model/user-period-change-status-request.dto.mjs +2 -0
- package/esm2022/model/user-period-request.dto.mjs +1 -1
- package/esm2022/model/user-period.dto.mjs +1 -1
- package/esm2022/model/user-periods-change-status-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-periods-change-status-create-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-change-status-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-periods-change-status-create-status-error-component.dto.mjs +20 -0
- package/esm2022/model/user-periods-change-status-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-periods-create-description-error-component.dto.mjs +1 -3
- package/esm2022/model/user-periods-update-description-error-component.dto.mjs +1 -3
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +192 -88
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/branch-period-request.dto.d.ts +1 -1
- package/model/branch-period.dto.d.ts +1 -1
- package/model/branch-periods-create-description-error-component.dto.d.ts +1 -3
- package/model/branch-periods-update-description-error-component.dto.d.ts +1 -3
- package/model/models.d.ts +6 -0
- package/model/user-period-change-status-request.dto.d.ts +16 -0
- package/model/user-period-request.dto.d.ts +1 -1
- package/model/user-period.dto.d.ts +1 -1
- package/model/user-periods-change-status-create-error-response400.dto.d.ts +16 -0
- package/model/user-periods-change-status-create-error.dto.d.ts +16 -0
- package/model/user-periods-change-status-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-periods-change-status-create-status-error-component.dto.d.ts +28 -0
- package/model/user-periods-change-status-create-validation-error.dto.d.ts +15 -0
- package/model/user-periods-create-description-error-component.dto.d.ts +1 -3
- package/model/user-periods-update-description-error-component.dto.d.ts +1 -3
- package/package.json +2 -2
|
@@ -15,7 +15,7 @@ import { BranchPeriodTypeEnumDto } from "./branch-period-type-enum.dto";
|
|
|
15
15
|
export interface BranchPeriodRequestDto {
|
|
16
16
|
branch: number;
|
|
17
17
|
title: string;
|
|
18
|
-
description: string;
|
|
19
18
|
period: DateRangeFieldRequestDto;
|
|
20
19
|
type: BranchPeriodTypeEnumDto;
|
|
20
|
+
description?: string;
|
|
21
21
|
}
|
|
@@ -13,7 +13,7 @@ export interface BranchPeriodsCreateDescriptionErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
17
|
*/
|
|
18
18
|
code: BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -22,10 +22,8 @@ export declare enum BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum {
|
|
|
22
22
|
Description = "description"
|
|
23
23
|
}
|
|
24
24
|
export declare enum BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum {
|
|
25
|
-
Blank = "blank",
|
|
26
25
|
Invalid = "invalid",
|
|
27
26
|
Null = "null",
|
|
28
27
|
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
-
Required = "required",
|
|
30
28
|
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
31
29
|
}
|
|
@@ -13,7 +13,7 @@ export interface BranchPeriodsUpdateDescriptionErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
17
|
*/
|
|
18
18
|
code: BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -22,10 +22,8 @@ export declare enum BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum {
|
|
|
22
22
|
Description = "description"
|
|
23
23
|
}
|
|
24
24
|
export declare enum BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum {
|
|
25
|
-
Blank = "blank",
|
|
26
25
|
Invalid = "invalid",
|
|
27
26
|
Null = "null",
|
|
28
27
|
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
-
Required = "required",
|
|
30
28
|
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
31
29
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -449,10 +449,16 @@ export * from "./user-logins-update-is-staff-error-component.dto";
|
|
|
449
449
|
export * from "./user-logins-update-non-field-errors-error-component.dto";
|
|
450
450
|
export * from "./user-logins-update-role-error-component.dto";
|
|
451
451
|
export * from "./user-logins-update-validation-error.dto";
|
|
452
|
+
export * from "./user-period-change-status-request.dto";
|
|
452
453
|
export * from "./user-period.dto";
|
|
453
454
|
export * from "./user-period-request.dto";
|
|
454
455
|
export * from "./user-period-status-enum.dto";
|
|
455
456
|
export * from "./user-period-type-enum.dto";
|
|
457
|
+
export * from "./user-periods-change-status-create-error.dto";
|
|
458
|
+
export * from "./user-periods-change-status-create-error-response400.dto";
|
|
459
|
+
export * from "./user-periods-change-status-create-non-field-errors-error-component.dto";
|
|
460
|
+
export * from "./user-periods-change-status-create-status-error-component.dto";
|
|
461
|
+
export * from "./user-periods-change-status-create-validation-error.dto";
|
|
456
462
|
export * from "./user-periods-create-description-error-component.dto";
|
|
457
463
|
export * from "./user-periods-create-error.dto";
|
|
458
464
|
export * from "./user-periods-create-error-response400.dto";
|
|
@@ -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
|
+
import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for UserPeriod change status action.
|
|
13
|
+
*/
|
|
14
|
+
export interface UserPeriodChangeStatusRequestDto {
|
|
15
|
+
status: UserPeriodStatusEnumDto;
|
|
16
|
+
}
|
|
@@ -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
|
+
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { UserPeriodsChangeStatusCreateValidationErrorDto } from "./user-periods-change-status-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type UserPeriodsChangeStatusCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type UserPeriodsChangeStatusCreateErrorResponse400Dto = ParseErrorResponseDto | UserPeriodsChangeStatusCreateValidationErrorDto;
|
|
@@ -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
|
+
import { UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDto } from "./user-periods-change-status-create-non-field-errors-error-component.dto";
|
|
11
|
+
import { UserPeriodsChangeStatusCreateStatusErrorComponentDto } from "./user-periods-change-status-create-status-error-component.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type UserPeriodsChangeStatusCreateErrorDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type UserPeriodsChangeStatusCreateErrorDto = UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDto | UserPeriodsChangeStatusCreateStatusErrorComponentDto;
|
|
@@ -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 UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
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 UserPeriodsChangeStatusCreateStatusErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `status` - status
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsChangeStatusCreateStatusErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsChangeStatusCreateStatusErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsChangeStatusCreateStatusErrorComponentDtoAttrEnum {
|
|
22
|
+
Status = "status"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsChangeStatusCreateStatusErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -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 { UserPeriodsChangeStatusCreateErrorDto } from "./user-periods-change-status-create-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface UserPeriodsChangeStatusCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<UserPeriodsChangeStatusCreateErrorDto>;
|
|
15
|
+
}
|
|
@@ -13,7 +13,7 @@ export interface UserPeriodsCreateDescriptionErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
17
|
*/
|
|
18
18
|
code: UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -22,10 +22,8 @@ export declare enum UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum {
|
|
|
22
22
|
Description = "description"
|
|
23
23
|
}
|
|
24
24
|
export declare enum UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum {
|
|
25
|
-
Blank = "blank",
|
|
26
25
|
Invalid = "invalid",
|
|
27
26
|
Null = "null",
|
|
28
27
|
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
-
Required = "required",
|
|
30
28
|
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
31
29
|
}
|
|
@@ -13,7 +13,7 @@ export interface UserPeriodsUpdateDescriptionErrorComponentDto {
|
|
|
13
13
|
*/
|
|
14
14
|
attr: UserPeriodsUpdateDescriptionErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
|
-
* * `
|
|
16
|
+
* * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed
|
|
17
17
|
*/
|
|
18
18
|
code: UserPeriodsUpdateDescriptionErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
@@ -22,10 +22,8 @@ export declare enum UserPeriodsUpdateDescriptionErrorComponentDtoAttrEnum {
|
|
|
22
22
|
Description = "description"
|
|
23
23
|
}
|
|
24
24
|
export declare enum UserPeriodsUpdateDescriptionErrorComponentDtoCodeEnum {
|
|
25
|
-
Blank = "blank",
|
|
26
25
|
Invalid = "invalid",
|
|
27
26
|
Null = "null",
|
|
28
27
|
NullCharactersNotAllowed = "null_characters_not_allowed",
|
|
29
|
-
Required = "required",
|
|
30
28
|
SurrogateCharactersNotAllowed = "surrogate_characters_not_allowed"
|
|
31
29
|
}
|
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.46",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.41)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|