@saritasa/crm-delmar-core-sdk 0.1.121 → 0.1.125
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 +2 -2
|
@@ -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
|
@@ -34,6 +34,7 @@ export * from "./component.dto";
|
|
|
34
34
|
export * from "./component-hourly-report.dto";
|
|
35
35
|
export * from "./config-enum.dto";
|
|
36
36
|
export * from "./create-jira-project-request.dto";
|
|
37
|
+
export * from "./custom-xlsx-file-format-enum.dto";
|
|
37
38
|
export * from "./daily-job.dto";
|
|
38
39
|
export * from "./date-range-field.dto";
|
|
39
40
|
export * from "./date-range-field-request.dto";
|
|
@@ -89,7 +90,6 @@ export * from "./job-type-enum.dto";
|
|
|
89
90
|
export * from "./location.dto";
|
|
90
91
|
export * from "./location-request.dto";
|
|
91
92
|
export * from "./login-open-id-request.dto";
|
|
92
|
-
export * from "./margin-report-resource-create-export-job-file-format-enum.dto";
|
|
93
93
|
export * from "./margin-report-resource-create-export-job-request.dto";
|
|
94
94
|
export * from "./month-closure.dto";
|
|
95
95
|
export * from "./month-closure-request.dto";
|
|
@@ -145,6 +145,7 @@ export * from "./paginated-user-list.dto";
|
|
|
145
145
|
export * from "./paginated-user-login-list.dto";
|
|
146
146
|
export * from "./paginated-user-period-list.dto";
|
|
147
147
|
export * from "./paginated-user-score-list.dto";
|
|
148
|
+
export * from "./paginated-user-score-stat-list.dto";
|
|
148
149
|
export * from "./paginated-user-sum-capacity-list.dto";
|
|
149
150
|
export * from "./paginated-user-timezone-list.dto";
|
|
150
151
|
export * from "./paginated-work-type-list.dto";
|
|
@@ -288,6 +289,8 @@ export * from "./user-resource-create-export-job-request.dto";
|
|
|
288
289
|
export * from "./user-score.dto";
|
|
289
290
|
export * from "./user-score-payload.dto";
|
|
290
291
|
export * from "./user-score-request.dto";
|
|
292
|
+
export * from "./user-score-stat.dto";
|
|
293
|
+
export * from "./user-score-stats-resource-create-export-job-request.dto";
|
|
291
294
|
export * from "./user-status-enum.dto";
|
|
292
295
|
export * from "./user-sum-capacity.dto";
|
|
293
296
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.
|
|
3
|
+
"version": "0.1.125",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.52)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|