@saritasa/crm-delmar-core-sdk 0.2.120 → 0.2.124
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/api.d.ts +4 -1
- package/api/export-user-score-stats-api.service.d.ts +102 -0
- package/api/export-user-score-stats-api.serviceInterface.d.ts +87 -0
- package/api/user-scores-api.serviceInterface.d.ts +16 -0
- package/api/users-api.service.d.ts +24 -1
- package/api/users-api.serviceInterface.d.ts +37 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +470 -18
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/{margin-report-resource-create-export-job-file-format-enum.dto.d.ts → custom-xlsx-file-format-enum.dto.d.ts} +1 -1
- package/model/margin-report-resource-create-export-job-request.dto.d.ts +2 -2
- package/model/models.d.ts +4 -1
- package/model/paginated-user-score-stat-list.dto.d.ts +16 -0
- package/model/user-score-stat.dto.d.ts +29 -0
- package/model/user-score-stats-resource-create-export-job-request.dto.d.ts +16 -0
- package/package.json +1 -1
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import {
|
|
10
|
+
import { CustomXLSXFileFormatEnumDto } from "./custom-xlsx-file-format-enum.dto";
|
|
11
11
|
/**
|
|
12
12
|
* Serializer to start export job.
|
|
13
13
|
*/
|
|
14
14
|
export interface MarginReportResourceCreateExportJobRequestDto {
|
|
15
|
-
file_format:
|
|
15
|
+
file_format: CustomXLSXFileFormatEnumDto;
|
|
16
16
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export * from "./component.dto";
|
|
|
37
37
|
export * from "./component-hourly-report.dto";
|
|
38
38
|
export * from "./config-enum.dto";
|
|
39
39
|
export * from "./create-jira-project-request.dto";
|
|
40
|
+
export * from "./custom-xlsx-file-format-enum.dto";
|
|
40
41
|
export * from "./daily-job.dto";
|
|
41
42
|
export * from "./date-range-field.dto";
|
|
42
43
|
export * from "./date-range-field-request.dto";
|
|
@@ -92,7 +93,6 @@ export * from "./job-type-enum.dto";
|
|
|
92
93
|
export * from "./location.dto";
|
|
93
94
|
export * from "./location-request.dto";
|
|
94
95
|
export * from "./login-open-id-request.dto";
|
|
95
|
-
export * from "./margin-report-resource-create-export-job-file-format-enum.dto";
|
|
96
96
|
export * from "./margin-report-resource-create-export-job-request.dto";
|
|
97
97
|
export * from "./month-closure.dto";
|
|
98
98
|
export * from "./month-closure-request.dto";
|
|
@@ -148,6 +148,7 @@ export * from "./paginated-user-list.dto";
|
|
|
148
148
|
export * from "./paginated-user-login-list.dto";
|
|
149
149
|
export * from "./paginated-user-period-list.dto";
|
|
150
150
|
export * from "./paginated-user-score-list.dto";
|
|
151
|
+
export * from "./paginated-user-score-stat-list.dto";
|
|
151
152
|
export * from "./paginated-user-sum-capacity-list.dto";
|
|
152
153
|
export * from "./paginated-user-timezone-list.dto";
|
|
153
154
|
export * from "./paginated-work-type-list.dto";
|
|
@@ -292,6 +293,8 @@ export * from "./user-resource-create-export-job-request.dto";
|
|
|
292
293
|
export * from "./user-score.dto";
|
|
293
294
|
export * from "./user-score-payload.dto";
|
|
294
295
|
export * from "./user-score-request.dto";
|
|
296
|
+
export * from "./user-score-stat.dto";
|
|
297
|
+
export * from "./user-score-stats-resource-create-export-job-request.dto";
|
|
295
298
|
export * from "./user-status-enum.dto";
|
|
296
299
|
export * from "./user-sum-capacity.dto";
|
|
297
300
|
export * from "./user-timezone.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 { UserScoreStatDto } from "./user-score-stat.dto";
|
|
11
|
+
export interface PaginatedUserScoreStatListDto {
|
|
12
|
+
count: number;
|
|
13
|
+
results: Array<UserScoreStatDto>;
|
|
14
|
+
next?: string | null;
|
|
15
|
+
previous?: string | null;
|
|
16
|
+
}
|
|
@@ -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
|
+
import { SimpleDepartmentDto } from "./simple-department.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for User model to show score stats.
|
|
13
|
+
*/
|
|
14
|
+
export interface UserScoreStatDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
first_name: string;
|
|
19
|
+
last_name: string;
|
|
20
|
+
email: string;
|
|
21
|
+
department: number;
|
|
22
|
+
branch: number;
|
|
23
|
+
readonly plus_score: number;
|
|
24
|
+
readonly minus_score: number;
|
|
25
|
+
readonly total_score: number;
|
|
26
|
+
readonly department_data: SimpleDepartmentDto;
|
|
27
|
+
middle_name?: string;
|
|
28
|
+
avatar?: string | null;
|
|
29
|
+
}
|
|
@@ -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 { CustomXLSXFileFormatEnumDto } from "./custom-xlsx-file-format-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to start export job.
|
|
13
|
+
*/
|
|
14
|
+
export interface UserScoreStatsResourceCreateExportJobRequestDto {
|
|
15
|
+
file_format: CustomXLSXFileFormatEnumDto;
|
|
16
|
+
}
|
package/package.json
CHANGED