@saritasa/crm-delmar-core-sdk 0.0.215 → 0.0.217
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/export-job-reports-departments-api.serviceInterface.d.ts +1 -1
- package/api/export-job-reports-users-api.serviceInterface.d.ts +1 -1
- package/api/export-jobs-api.serviceInterface.d.ts +1 -1
- package/api/export-user-periods-api.serviceInterface.d.ts +1 -1
- package/api/jobs-api.serviceInterface.d.ts +7 -7
- package/api/search-periods-api.serviceInterface.d.ts +1 -1
- package/api/user-periods-api.serviceInterface.d.ts +1 -1
- package/esm2022/api/export-job-reports-departments-api.serviceInterface.mjs +1 -1
- package/esm2022/api/export-job-reports-users-api.serviceInterface.mjs +1 -1
- package/esm2022/api/export-jobs-api.serviceInterface.mjs +1 -1
- package/esm2022/api/export-user-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/api/jobs-api.serviceInterface.mjs +1 -1
- package/esm2022/api/search-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/api/user-periods-api.serviceInterface.mjs +1 -1
- package/esm2022/model/job-type-enum.dto.mjs +4 -2
- package/esm2022/model/models.mjs +2 -2
- package/esm2022/model/user-period-for-stats.dto.mjs +1 -1
- package/esm2022/model/user-period-review-request-status-enum.dto.mjs +3 -3
- package/esm2022/model/user-period-statistic.dto.mjs +1 -1
- package/esm2022/model/user-period-status-enum.dto.mjs +3 -3
- package/esm2022/model/user-period-total-stats.dto.mjs +11 -0
- package/esm2022/model/user-period-year-data.dto.mjs +1 -1
- package/esm2022/model/user-period.dto.mjs +1 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +7 -5
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/job-type-enum.dto.d.ts +3 -1
- package/model/models.d.ts +1 -1
- package/model/user-period-for-stats.dto.d.ts +4 -1
- package/model/user-period-review-request-status-enum.dto.d.ts +2 -2
- package/model/user-period-statistic.dto.d.ts +2 -2
- package/model/user-period-status-enum.dto.d.ts +2 -2
- package/model/user-period-total-stats.dto.d.ts +20 -0
- package/model/user-period-year-data.dto.d.ts +1 -1
- package/model/user-period.dto.d.ts +0 -1
- package/package.json +2 -2
- package/esm2022/model/user-period-total-by-type.dto.mjs +0 -11
- package/model/user-period-total-by-type.dto.d.ts +0 -20
|
@@ -8,14 +8,16 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `architecture` - Architecture * `code_optimization` - Code optimization * `coding` - Coding * `project_management` - Project management * `validation_and_verification` - Validation and verification * `design` - Design * `unknown` - Unknown
|
|
11
|
+
* * `architecture` - Architecture * `code_optimization` - Code optimization * `code_review` - Code review * `coding` - Coding * `project_management` - Project management * `validation_and_verification` - Validation and verification * `design` - Design * `devops` - DevOps * `unknown` - Unknown
|
|
12
12
|
*/
|
|
13
13
|
export declare enum JobTypeEnumDto {
|
|
14
14
|
Architecture = "architecture",
|
|
15
15
|
CodeOptimization = "code_optimization",
|
|
16
|
+
CodeReview = "code_review",
|
|
16
17
|
Coding = "coding",
|
|
17
18
|
ProjectManagement = "project_management",
|
|
18
19
|
ValidationAndVerification = "validation_and_verification",
|
|
19
20
|
Design = "design",
|
|
21
|
+
Devops = "devops",
|
|
20
22
|
Unknown = "unknown"
|
|
21
23
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -1346,7 +1346,7 @@ export * from "./user-period-review-request-request.dto";
|
|
|
1346
1346
|
export * from "./user-period-review-request-status-enum.dto";
|
|
1347
1347
|
export * from "./user-period-statistic.dto";
|
|
1348
1348
|
export * from "./user-period-status-enum.dto";
|
|
1349
|
-
export * from "./user-period-total-
|
|
1349
|
+
export * from "./user-period-total-stats.dto";
|
|
1350
1350
|
export * from "./user-period-type-enum.dto";
|
|
1351
1351
|
export * from "./user-period-year-data.dto";
|
|
1352
1352
|
export * from "./user-periods-create-description-error-component.dto";
|
|
@@ -18,8 +18,11 @@ export interface UserPeriodForStatsDto {
|
|
|
18
18
|
readonly id: number;
|
|
19
19
|
readonly created: string;
|
|
20
20
|
readonly modified: string;
|
|
21
|
+
period: DateRangeFieldDto;
|
|
21
22
|
type: UserPeriodTypeEnumDto;
|
|
22
23
|
status: UserPeriodStatusEnumDto;
|
|
23
|
-
period: DateRangeFieldDto;
|
|
24
24
|
readonly approvers_data: Array<SimpleUserPeriodApproverDto>;
|
|
25
|
+
status_updated?: string | null;
|
|
26
|
+
file?: string | null;
|
|
27
|
+
description?: string;
|
|
25
28
|
}
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `approved` - approved * `
|
|
11
|
+
* * `approved` - approved * `rejected` - rejected
|
|
12
12
|
*/
|
|
13
13
|
export declare enum UserPeriodReviewRequestStatusEnumDto {
|
|
14
14
|
Approved = "approved",
|
|
15
|
-
|
|
15
|
+
Rejected = "rejected"
|
|
16
16
|
}
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { UserPeriodYearDataDto } from "./user-period-year-data.dto";
|
|
11
|
-
import {
|
|
11
|
+
import { UserPeriodTotalStatsDto } from "./user-period-total-stats.dto";
|
|
12
12
|
/**
|
|
13
13
|
* Serializer class for UserPeriod statistic API.
|
|
14
14
|
*/
|
|
15
15
|
export interface UserPeriodStatisticDto {
|
|
16
|
-
readonly stats:
|
|
16
|
+
readonly stats: UserPeriodTotalStatsDto;
|
|
17
17
|
readonly years_stats: Array<UserPeriodYearDataDto>;
|
|
18
18
|
}
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* * `approved` - Approved * `
|
|
11
|
+
* * `approved` - Approved * `rejected` - Rejected * `pending` - Pending
|
|
12
12
|
*/
|
|
13
13
|
export declare enum UserPeriodStatusEnumDto {
|
|
14
14
|
Approved = "approved",
|
|
15
|
-
|
|
15
|
+
Rejected = "rejected",
|
|
16
16
|
Pending = "pending"
|
|
17
17
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
/**
|
|
11
|
+
* Serializer to represent stats of user periods for user.
|
|
12
|
+
*/
|
|
13
|
+
export interface UserPeriodTotalStatsDto {
|
|
14
|
+
readonly vacation_days_count: number;
|
|
15
|
+
readonly compensation_days_count: number;
|
|
16
|
+
readonly sick_days_count: number;
|
|
17
|
+
readonly personal_holiday_days_count: number;
|
|
18
|
+
readonly personal_workday_days_count: number;
|
|
19
|
+
readonly zeroing_days_count: number;
|
|
20
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { UserPeriodForStatsDto } from "./user-period-for-stats.dto";
|
|
11
11
|
/**
|
|
12
|
-
* Serializer to
|
|
12
|
+
* Serializer to represent user periods and spend vacations for year.
|
|
13
13
|
*/
|
|
14
14
|
export interface UserPeriodYearDataDto {
|
|
15
15
|
readonly year: number;
|
|
@@ -25,7 +25,6 @@ export interface UserPeriodDto {
|
|
|
25
25
|
type: UserPeriodTypeEnumDto;
|
|
26
26
|
readonly status: UserPeriodStatusEnumDto;
|
|
27
27
|
readonly status_updated: string | null;
|
|
28
|
-
readonly approvers: Array<number>;
|
|
29
28
|
readonly approvers_data: Array<SimpleUserPeriodApproverDto>;
|
|
30
29
|
file?: string | null;
|
|
31
30
|
description?: string;
|
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.217",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.122)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -1,11 +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 {};
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1wZXJpb2QtdG90YWwtYnktdHlwZS5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2VyLXBlcmlvZC10b3RhbC1ieS10eXBlLmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbi8qKlxuICogU2VyaWFsaXplciB0byByZXByZXNlbnQgY291bnQgb2YgdXNlciBwZXJpb2QgZ3JvdXBlZCBieSB0eXBlIG9uZXMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgVXNlclBlcmlvZFRvdGFsQnlUeXBlRHRvIHtcbiAgcmVhZG9ubHkgdmFjYXRpb25fY291bnQ6IG51bWJlcjtcbiAgcmVhZG9ubHkgY29tcGVuc2F0aW9uX2NvdW50OiBudW1iZXI7XG4gIHJlYWRvbmx5IHNpY2tfY291bnQ6IG51bWJlcjtcbiAgcmVhZG9ubHkgcGVyc29uYWxfaG9saWRheV9jb3VudDogbnVtYmVyO1xuICByZWFkb25seSBwZXJzb25hbF93b3JrZGF5X2NvdW50OiBudW1iZXI7XG4gIHJlYWRvbmx5IHplcm9pbmdfY291bnQ6IG51bWJlcjtcbn1cbiJdfQ==
|
|
@@ -1,20 +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
|
-
/**
|
|
11
|
-
* Serializer to represent count of user period grouped by type ones.
|
|
12
|
-
*/
|
|
13
|
-
export interface UserPeriodTotalByTypeDto {
|
|
14
|
-
readonly vacation_count: number;
|
|
15
|
-
readonly compensation_count: number;
|
|
16
|
-
readonly sick_count: number;
|
|
17
|
-
readonly personal_holiday_count: number;
|
|
18
|
-
readonly personal_workday_count: number;
|
|
19
|
-
readonly zeroing_count: number;
|
|
20
|
-
}
|