@saritasa/crm-delmar-core-sdk 0.2.83 → 0.2.86
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/clients-api.service.d.ts +23 -1
- package/api/clients-api.serviceInterface.d.ts +11 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +44 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/client-hosting-report.dto.d.ts +22 -0
- package/model/models.d.ts +2 -0
- package/model/project-serializer-for-hosting-report.dto.d.ts +23 -0
- package/package.json +2 -2
|
@@ -0,0 +1,22 @@
|
|
|
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 { ProjectSerializerForHostingReportDto } from "./project-serializer-for-hosting-report.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for client hosting report serializer.
|
|
13
|
+
*/
|
|
14
|
+
export interface ClientHostingReportDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
name: string;
|
|
19
|
+
projects: Array<number>;
|
|
20
|
+
total_hosting_fee: string;
|
|
21
|
+
readonly projects_data: Array<ProjectSerializerForHostingReportDto>;
|
|
22
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from "./client-department-hourly-report-export-resource-create-export-j
|
|
|
15
15
|
export * from "./client.dto";
|
|
16
16
|
export * from "./client-duration-data.dto";
|
|
17
17
|
export * from "./client-error-enum.dto";
|
|
18
|
+
export * from "./client-hosting-report.dto";
|
|
18
19
|
export * from "./client-job-hourly-report-export-resource-create-export-job-request.dto";
|
|
19
20
|
export * from "./client-margin-report.dto";
|
|
20
21
|
export * from "./client-note.dto";
|
|
@@ -179,6 +180,7 @@ export * from "./project-resource-request.dto";
|
|
|
179
180
|
export * from "./project-resource-resource-create-export-job-request.dto";
|
|
180
181
|
export * from "./project-resource-update.dto";
|
|
181
182
|
export * from "./project-resource-update-request.dto";
|
|
183
|
+
export * from "./project-serializer-for-hosting-report.dto";
|
|
182
184
|
export * from "./project-sprint-hourly-report-export-resource-create-export-job-request.dto";
|
|
183
185
|
export * from "./project-statistics.dto";
|
|
184
186
|
export * from "./project-statistics-request.dto";
|
|
@@ -0,0 +1,23 @@
|
|
|
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 { HostingFrequencyEnumDto } from "./hosting-frequency-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer for Project model for hosting report.
|
|
13
|
+
*/
|
|
14
|
+
export interface ProjectSerializerForHostingReportDto {
|
|
15
|
+
readonly id: number;
|
|
16
|
+
readonly created: string;
|
|
17
|
+
readonly modified: string;
|
|
18
|
+
name: string;
|
|
19
|
+
readonly hosting_fee_for_month: string;
|
|
20
|
+
hosting_frequency?: HostingFrequencyEnumDto;
|
|
21
|
+
hosting_start?: string | null;
|
|
22
|
+
hosting_fee?: string | null;
|
|
23
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.
|
|
3
|
+
"version": "0.2.86",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.2.1)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|