@saritasa/crm-delmar-core-sdk 0.0.184 → 0.0.185
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/tasks-api.service.d.ts +21 -0
- package/api/tasks-api.serviceInterface.d.ts +6 -0
- package/esm2022/api/tasks-api.service.mjs +54 -1
- package/esm2022/api/tasks-api.serviceInterface.mjs +1 -1
- package/esm2022/model/models.mjs +3 -1
- package/esm2022/model/task-stats.dto.mjs +11 -0
- package/esm2022/model/tasks-stats-retrieve-error-response400.dto.mjs +2 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +63 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +2 -0
- package/model/task-stats.dto.d.ts +16 -0
- package/model/tasks-stats-retrieve-error-response400.dto.d.ts +15 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -966,6 +966,7 @@ export * from "./sso-start-create-validation-error.dto";
|
|
|
966
966
|
export * from "./state-enum.dto";
|
|
967
967
|
export * from "./task.dto";
|
|
968
968
|
export * from "./task-resource-create-export-job-request.dto";
|
|
969
|
+
export * from "./task-stats.dto";
|
|
969
970
|
export * from "./task-statuses.dto";
|
|
970
971
|
export * from "./tasks-list-assignee-error-component.dto";
|
|
971
972
|
export * from "./tasks-list-assignee-in-error-component.dto";
|
|
@@ -991,6 +992,7 @@ export * from "./tasks-list-updated-by-error-component.dto";
|
|
|
991
992
|
export * from "./tasks-list-updated-by-in-error-component.dto";
|
|
992
993
|
export * from "./tasks-list-validation-error.dto";
|
|
993
994
|
export * from "./tasks-retrieve-error-response400.dto";
|
|
995
|
+
export * from "./tasks-stats-retrieve-error-response400.dto";
|
|
994
996
|
export * from "./tasks-statuses-retrieve-assignee-error-component.dto";
|
|
995
997
|
export * from "./tasks-statuses-retrieve-assignee-in-error-component.dto";
|
|
996
998
|
export * from "./tasks-statuses-retrieve-component-error-component.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
|
+
/**
|
|
11
|
+
* Serializer to represent tasks stats.
|
|
12
|
+
*/
|
|
13
|
+
export interface TaskStatsDto {
|
|
14
|
+
in_progress: number;
|
|
15
|
+
done: number;
|
|
16
|
+
}
|
|
@@ -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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
/**
|
|
12
|
+
* @type TasksStatsRetrieveErrorResponse400Dto
|
|
13
|
+
* @export
|
|
14
|
+
*/
|
|
15
|
+
export type TasksStatsRetrieveErrorResponse400Dto = ParseErrorResponseDto;
|
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.185",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.105)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|