@saritasa/crm-delmar-core-sdk 0.0.76 → 0.0.78
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.serviceInterface.d.ts +2 -0
- package/esm2022/api/user-periods-api.service.mjs +9 -1
- package/esm2022/api/user-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/model/models.mjs +3 -1
- package/esm2022/model/simple-user-request.dto.mjs +1 -1
- package/esm2022/model/simple-user.dto.mjs +1 -10
- package/esm2022/model/user-period.dto.mjs +1 -1
- package/esm2022/model/user-periods-list-error.dto.mjs +1 -1
- package/esm2022/model/user-periods-list-period-endswith-lte-error-component.dto.mjs +18 -0
- package/esm2022/model/user-periods-list-period-startswith-gte-error-component.dto.mjs +18 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +45 -11
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +2 -0
- package/model/simple-user-request.dto.d.ts +1 -0
- package/model/simple-user.dto.d.ts +3 -0
- package/model/user-period.dto.d.ts +2 -0
- package/model/user-periods-list-error.dto.d.ts +3 -1
- package/model/user-periods-list-period-endswith-lte-error-component.dto.d.ts +26 -0
- package/model/user-periods-list-period-startswith-gte-error-component.dto.d.ts +26 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -514,6 +514,8 @@ export * from "./user-periods-list-error.dto";
|
|
|
514
514
|
export * from "./user-periods-list-error-response400.dto";
|
|
515
515
|
export * from "./user-periods-list-id-error-component.dto";
|
|
516
516
|
export * from "./user-periods-list-id-in-error-component.dto";
|
|
517
|
+
export * from "./user-periods-list-period-endswith-lte-error-component.dto";
|
|
518
|
+
export * from "./user-periods-list-period-startswith-gte-error-component.dto";
|
|
517
519
|
export * from "./user-periods-list-status-error-component.dto";
|
|
518
520
|
export * from "./user-periods-list-status-in-error-component.dto";
|
|
519
521
|
export * from "./user-periods-list-type-error-component.dto";
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { SimpleDepartmentDto } from "./simple-department.dto";
|
|
10
11
|
/**
|
|
11
12
|
* Serializer for User model. Contains less information for representing in others APIs.
|
|
12
13
|
*/
|
|
@@ -17,6 +18,8 @@ export interface SimpleUserDto {
|
|
|
17
18
|
first_name: string;
|
|
18
19
|
last_name: string;
|
|
19
20
|
email: string;
|
|
21
|
+
department: number;
|
|
22
|
+
readonly department_data: SimpleDepartmentDto;
|
|
20
23
|
middle_name?: string;
|
|
21
24
|
avatar?: string | null;
|
|
22
25
|
}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { DateRangeFieldDto } from "./date-range-field.dto";
|
|
11
|
+
import { SimpleUserDto } from "./simple-user.dto";
|
|
11
12
|
import { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
|
|
12
13
|
import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
|
|
13
14
|
/**
|
|
@@ -22,6 +23,7 @@ export interface UserPeriodDto {
|
|
|
22
23
|
type: UserPeriodTypeEnumDto;
|
|
23
24
|
readonly status: UserPeriodStatusEnumDto;
|
|
24
25
|
readonly status_updated_by: number | null;
|
|
26
|
+
readonly status_updated_by_data: SimpleUserDto;
|
|
25
27
|
readonly status_updated: string | null;
|
|
26
28
|
file?: string | null;
|
|
27
29
|
description?: string;
|
|
@@ -17,12 +17,14 @@ import { UserPeriodsListStatusInErrorComponentDto } from "./user-periods-list-st
|
|
|
17
17
|
import { UserPeriodsListUserIdInErrorComponentDto } from "./user-periods-list-user-id-in-error-component.dto";
|
|
18
18
|
import { UserPeriodsListUserStatusInErrorComponentDto } from "./user-periods-list-user-status-in-error-component.dto";
|
|
19
19
|
import { UserPeriodsListTypeErrorComponentDto } from "./user-periods-list-type-error-component.dto";
|
|
20
|
+
import { UserPeriodsListPeriodStartswithGteErrorComponentDto } from "./user-periods-list-period-startswith-gte-error-component.dto";
|
|
20
21
|
import { UserPeriodsListUserBranchIdInErrorComponentDto } from "./user-periods-list-user-branch-id-in-error-component.dto";
|
|
21
22
|
import { UserPeriodsListUserDepartmentIdInErrorComponentDto } from "./user-periods-list-user-department-id-in-error-component.dto";
|
|
22
23
|
import { UserPeriodsListUserSuperviseesIdInErrorComponentDto } from "./user-periods-list-user-supervisees-id-in-error-component.dto";
|
|
24
|
+
import { UserPeriodsListPeriodEndswithLteErrorComponentDto } from "./user-periods-list-period-endswith-lte-error-component.dto";
|
|
23
25
|
import { UserPeriodsListIdErrorComponentDto } from "./user-periods-list-id-error-component.dto";
|
|
24
26
|
/**
|
|
25
27
|
* @type UserPeriodsListErrorDto
|
|
26
28
|
* @export
|
|
27
29
|
*/
|
|
28
|
-
export type UserPeriodsListErrorDto = UserPeriodsListIdErrorComponentDto | UserPeriodsListIdInErrorComponentDto | UserPeriodsListStatusErrorComponentDto | UserPeriodsListStatusInErrorComponentDto | UserPeriodsListTypeErrorComponentDto | UserPeriodsListTypeInErrorComponentDto | UserPeriodsListUserBranchIdInErrorComponentDto | UserPeriodsListUserDepartmentIdInErrorComponentDto | UserPeriodsListUserIdInErrorComponentDto | UserPeriodsListUserStatusErrorComponentDto | UserPeriodsListUserStatusInErrorComponentDto | UserPeriodsListUserSuperviseesIdInErrorComponentDto | UserPeriodsListUserSupervisorsIdInErrorComponentDto | UserPeriodsListUserWorkTypeIdInErrorComponentDto;
|
|
30
|
+
export type UserPeriodsListErrorDto = UserPeriodsListIdErrorComponentDto | UserPeriodsListIdInErrorComponentDto | UserPeriodsListPeriodEndswithLteErrorComponentDto | UserPeriodsListPeriodStartswithGteErrorComponentDto | UserPeriodsListStatusErrorComponentDto | UserPeriodsListStatusInErrorComponentDto | UserPeriodsListTypeErrorComponentDto | UserPeriodsListTypeInErrorComponentDto | UserPeriodsListUserBranchIdInErrorComponentDto | UserPeriodsListUserDepartmentIdInErrorComponentDto | UserPeriodsListUserIdInErrorComponentDto | UserPeriodsListUserStatusErrorComponentDto | UserPeriodsListUserStatusInErrorComponentDto | UserPeriodsListUserSuperviseesIdInErrorComponentDto | UserPeriodsListUserSupervisorsIdInErrorComponentDto | UserPeriodsListUserWorkTypeIdInErrorComponentDto;
|
|
@@ -0,0 +1,26 @@
|
|
|
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 UserPeriodsListPeriodEndswithLteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period__endswith__lte` - period__endswith__lte
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListPeriodEndswithLteErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodEndswithLte = "period__endswith__lte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListPeriodEndswithLteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 UserPeriodsListPeriodStartswithGteErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `period__startswith__gte` - period__startswith__gte
|
|
13
|
+
*/
|
|
14
|
+
attr: UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid
|
|
17
|
+
*/
|
|
18
|
+
code: UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum UserPeriodsListPeriodStartswithGteErrorComponentDtoAttrEnum {
|
|
22
|
+
PeriodStartswithGte = "period__startswith__gte"
|
|
23
|
+
}
|
|
24
|
+
export declare enum UserPeriodsListPeriodStartswithGteErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid"
|
|
26
|
+
}
|
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.78",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.59)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|