@saritasa/crm-delmar-core-sdk 0.1.80 → 0.1.90
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.serviceInterface.d.ts +1 -1
- package/api/export-margin-report-api.serviceInterface.d.ts +1 -1
- package/api/jobs-api.serviceInterface.d.ts +7 -0
- package/api/projects-api.serviceInterface.d.ts +1 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +24 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/daily-job.dto.d.ts +27 -0
- package/model/job-report-hourly.dto.d.ts +2 -2
- package/model/job.dto.d.ts +4 -1
- package/model/models.d.ts +2 -0
- package/model/task-daily-job.dto.d.ts +18 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -85,7 +85,7 @@ export interface ClientsListRequestParams {
|
|
|
85
85
|
}
|
|
86
86
|
export interface ClientsMarginReportRetrieveRequestParams {
|
|
87
87
|
period: string;
|
|
88
|
-
roundingType: "none" | "
|
|
88
|
+
roundingType: "none" | "round_jobs" | "round_projects";
|
|
89
89
|
accountManagerIn?: Array<number>;
|
|
90
90
|
idIn?: Array<number>;
|
|
91
91
|
includeHostedProjects?: boolean;
|
|
@@ -27,7 +27,7 @@ export interface ExportMarginReportRetrieveRequestParams {
|
|
|
27
27
|
}
|
|
28
28
|
export interface ExportMarginReportStartCreateRequestParams {
|
|
29
29
|
period: string;
|
|
30
|
-
roundingType: "none" | "
|
|
30
|
+
roundingType: "none" | "round_jobs" | "round_projects";
|
|
31
31
|
marginReportResourceCreateExportJobRequestDto: MarginReportResourceCreateExportJobRequestDto;
|
|
32
32
|
accountManagerIn?: Array<number>;
|
|
33
33
|
idIn?: Array<number>;
|
|
@@ -71,6 +71,7 @@ export interface JobsComponentReportHourlyListRequestParams {
|
|
|
71
71
|
offset?: number;
|
|
72
72
|
ordering?: string;
|
|
73
73
|
projectIn?: Array<number>;
|
|
74
|
+
roundDuration?: boolean;
|
|
74
75
|
search?: string;
|
|
75
76
|
taskComponentIn?: Array<number>;
|
|
76
77
|
taskComponentIsnull?: boolean;
|
|
@@ -100,6 +101,7 @@ export interface JobsDepartmentReportHourlyListRequestParams {
|
|
|
100
101
|
offset?: number;
|
|
101
102
|
ordering?: string;
|
|
102
103
|
projectIn?: Array<number>;
|
|
104
|
+
roundDuration?: boolean;
|
|
103
105
|
search?: string;
|
|
104
106
|
taskComponentIn?: Array<number>;
|
|
105
107
|
taskComponentIsnull?: boolean;
|
|
@@ -129,6 +131,7 @@ export interface JobsListRequestParams {
|
|
|
129
131
|
offset?: number;
|
|
130
132
|
ordering?: string;
|
|
131
133
|
projectIn?: Array<number>;
|
|
134
|
+
roundDuration?: boolean;
|
|
132
135
|
search?: string;
|
|
133
136
|
taskComponentIn?: Array<number>;
|
|
134
137
|
taskComponentIsnull?: boolean;
|
|
@@ -240,6 +243,7 @@ export interface JobsReportHourlyListRequestParams {
|
|
|
240
243
|
offset?: number;
|
|
241
244
|
ordering?: string;
|
|
242
245
|
projectIn?: Array<number>;
|
|
246
|
+
roundDuration?: boolean;
|
|
243
247
|
search?: string;
|
|
244
248
|
taskComponentIn?: Array<number>;
|
|
245
249
|
taskComponentIsnull?: boolean;
|
|
@@ -300,6 +304,7 @@ export interface JobsSprintReportHourlyListRequestParams {
|
|
|
300
304
|
offset?: number;
|
|
301
305
|
ordering?: string;
|
|
302
306
|
projectIn?: Array<number>;
|
|
307
|
+
roundDuration?: boolean;
|
|
303
308
|
search?: string;
|
|
304
309
|
taskComponentIn?: Array<number>;
|
|
305
310
|
taskComponentIsnull?: boolean;
|
|
@@ -327,6 +332,7 @@ export interface JobsStatsRetrieveRequestParams {
|
|
|
327
332
|
isBillable?: boolean;
|
|
328
333
|
ordering?: string;
|
|
329
334
|
projectIn?: Array<number>;
|
|
335
|
+
roundDuration?: boolean;
|
|
330
336
|
search?: string;
|
|
331
337
|
taskComponentIn?: Array<number>;
|
|
332
338
|
taskComponentIsnull?: boolean;
|
|
@@ -356,6 +362,7 @@ export interface JobsTaskReportHourlyListRequestParams {
|
|
|
356
362
|
offset?: number;
|
|
357
363
|
ordering?: string;
|
|
358
364
|
projectIn?: Array<number>;
|
|
365
|
+
roundDuration?: boolean;
|
|
359
366
|
search?: string;
|
|
360
367
|
taskComponentIn?: Array<number>;
|
|
361
368
|
taskComponentIsnull?: boolean;
|
|
@@ -43,7 +43,7 @@ export interface ProjectsListRequestParams {
|
|
|
43
43
|
}
|
|
44
44
|
export interface ProjectsMarginReportListRequestParams {
|
|
45
45
|
period: string;
|
|
46
|
-
roundingType: "none" | "
|
|
46
|
+
roundingType: "none" | "round_jobs" | "round_projects";
|
|
47
47
|
billingType?: "fixed" | "hourly" | "investment" | "sla";
|
|
48
48
|
billingTypeIn?: Array<string>;
|
|
49
49
|
client?: number;
|
|
@@ -10050,6 +10050,7 @@ class JobsApiService extends BaseService {
|
|
|
10050
10050
|
const offset = requestParameters?.offset;
|
|
10051
10051
|
const ordering = requestParameters?.ordering;
|
|
10052
10052
|
const projectIn = requestParameters?.projectIn;
|
|
10053
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
10053
10054
|
const search = requestParameters?.search;
|
|
10054
10055
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
10055
10056
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -10092,6 +10093,7 @@ class JobsApiService extends BaseService {
|
|
|
10092
10093
|
if (projectIn) {
|
|
10093
10094
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
10094
10095
|
}
|
|
10096
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
10095
10097
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
10096
10098
|
if (taskComponentIn) {
|
|
10097
10099
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -10168,6 +10170,7 @@ class JobsApiService extends BaseService {
|
|
|
10168
10170
|
const offset = requestParameters?.offset;
|
|
10169
10171
|
const ordering = requestParameters?.ordering;
|
|
10170
10172
|
const projectIn = requestParameters?.projectIn;
|
|
10173
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
10171
10174
|
const search = requestParameters?.search;
|
|
10172
10175
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
10173
10176
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -10210,6 +10213,7 @@ class JobsApiService extends BaseService {
|
|
|
10210
10213
|
if (projectIn) {
|
|
10211
10214
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
10212
10215
|
}
|
|
10216
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
10213
10217
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
10214
10218
|
if (taskComponentIn) {
|
|
10215
10219
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -10286,6 +10290,7 @@ class JobsApiService extends BaseService {
|
|
|
10286
10290
|
const offset = requestParameters?.offset;
|
|
10287
10291
|
const ordering = requestParameters?.ordering;
|
|
10288
10292
|
const projectIn = requestParameters?.projectIn;
|
|
10293
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
10289
10294
|
const search = requestParameters?.search;
|
|
10290
10295
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
10291
10296
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -10328,6 +10333,7 @@ class JobsApiService extends BaseService {
|
|
|
10328
10333
|
if (projectIn) {
|
|
10329
10334
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
10330
10335
|
}
|
|
10336
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
10331
10337
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
10332
10338
|
if (taskComponentIn) {
|
|
10333
10339
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -10754,6 +10760,7 @@ class JobsApiService extends BaseService {
|
|
|
10754
10760
|
const offset = requestParameters?.offset;
|
|
10755
10761
|
const ordering = requestParameters?.ordering;
|
|
10756
10762
|
const projectIn = requestParameters?.projectIn;
|
|
10763
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
10757
10764
|
const search = requestParameters?.search;
|
|
10758
10765
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
10759
10766
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -10796,6 +10803,7 @@ class JobsApiService extends BaseService {
|
|
|
10796
10803
|
if (projectIn) {
|
|
10797
10804
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
10798
10805
|
}
|
|
10806
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
10799
10807
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
10800
10808
|
if (taskComponentIn) {
|
|
10801
10809
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -11028,6 +11036,7 @@ class JobsApiService extends BaseService {
|
|
|
11028
11036
|
const offset = requestParameters?.offset;
|
|
11029
11037
|
const ordering = requestParameters?.ordering;
|
|
11030
11038
|
const projectIn = requestParameters?.projectIn;
|
|
11039
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
11031
11040
|
const search = requestParameters?.search;
|
|
11032
11041
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
11033
11042
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -11070,6 +11079,7 @@ class JobsApiService extends BaseService {
|
|
|
11070
11079
|
if (projectIn) {
|
|
11071
11080
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
11072
11081
|
}
|
|
11082
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
11073
11083
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
11074
11084
|
if (taskComponentIn) {
|
|
11075
11085
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -11144,6 +11154,7 @@ class JobsApiService extends BaseService {
|
|
|
11144
11154
|
const isBillable = requestParameters?.isBillable;
|
|
11145
11155
|
const ordering = requestParameters?.ordering;
|
|
11146
11156
|
const projectIn = requestParameters?.projectIn;
|
|
11157
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
11147
11158
|
const search = requestParameters?.search;
|
|
11148
11159
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
11149
11160
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -11184,6 +11195,7 @@ class JobsApiService extends BaseService {
|
|
|
11184
11195
|
if (projectIn) {
|
|
11185
11196
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
11186
11197
|
}
|
|
11198
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
11187
11199
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
11188
11200
|
if (taskComponentIn) {
|
|
11189
11201
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -11260,6 +11272,7 @@ class JobsApiService extends BaseService {
|
|
|
11260
11272
|
const offset = requestParameters?.offset;
|
|
11261
11273
|
const ordering = requestParameters?.ordering;
|
|
11262
11274
|
const projectIn = requestParameters?.projectIn;
|
|
11275
|
+
const roundDuration = requestParameters?.roundDuration;
|
|
11263
11276
|
const search = requestParameters?.search;
|
|
11264
11277
|
const taskComponentIn = requestParameters?.taskComponentIn;
|
|
11265
11278
|
const taskComponentIsnull = requestParameters?.taskComponentIsnull;
|
|
@@ -11302,6 +11315,7 @@ class JobsApiService extends BaseService {
|
|
|
11302
11315
|
if (projectIn) {
|
|
11303
11316
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
|
|
11304
11317
|
}
|
|
11318
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, roundDuration, "round_duration");
|
|
11305
11319
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
11306
11320
|
if (taskComponentIn) {
|
|
11307
11321
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...taskComponentIn].join(COLLECTION_FORMATS["csv"]), "task__component__in");
|
|
@@ -19421,6 +19435,16 @@ var ServerErrorEnumDto;
|
|
|
19421
19435
|
* Do not edit the class manually.
|
|
19422
19436
|
*/
|
|
19423
19437
|
|
|
19438
|
+
/**
|
|
19439
|
+
* Delmar Api
|
|
19440
|
+
*
|
|
19441
|
+
*
|
|
19442
|
+
*
|
|
19443
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
19444
|
+
* https://openapi-generator.tech
|
|
19445
|
+
* Do not edit the class manually.
|
|
19446
|
+
*/
|
|
19447
|
+
|
|
19424
19448
|
/**
|
|
19425
19449
|
* Delmar Api
|
|
19426
19450
|
*
|