@saritasa/crm-delmar-core-sdk 0.1.1 → 0.1.3
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 +7 -1
- package/api/export-job-hourly-report-for-project-api.serviceInterface.d.ts +2 -2
- package/api/export-project-status-reports-api.service.d.ts +98 -0
- package/api/export-project-status-reports-api.serviceInterface.d.ts +80 -0
- package/api/export-project-summary-api.service.d.ts +98 -0
- package/api/export-project-summary-api.serviceInterface.d.ts +66 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +586 -6
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/export-project-status-reports-start-create-error-response400.dto.d.ts +16 -0
- package/model/export-project-status-reports-start-create-error.dto.d.ts +16 -0
- package/model/export-project-status-reports-start-create-file-format-error-component.dto.d.ts +28 -0
- package/model/export-project-status-reports-start-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/export-project-status-reports-start-create-validation-error.dto.d.ts +15 -0
- package/model/export-project-summary-start-create-error-response400.dto.d.ts +16 -0
- package/model/export-project-summary-start-create-error.dto.d.ts +16 -0
- package/model/export-project-summary-start-create-file-format-error-component.dto.d.ts +28 -0
- package/model/export-project-summary-start-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/export-project-summary-start-create-validation-error.dto.d.ts +15 -0
- package/model/{job-hourly-report-export-recourse-create-export-job-request.dto.d.ts → job-hourly-report-export-resource-create-export-job-request.dto.d.ts} +1 -1
- package/model/models.d.ts +13 -1
- package/model/project-status-report-resource-create-export-job-request.dto.d.ts +16 -0
- package/model/project-summary-export-resource-create-export-job-request.dto.d.ts +16 -0
- package/package.json +2 -2
|
@@ -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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { ExportProjectStatusReportsStartCreateValidationErrorDto } from "./export-project-status-reports-start-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportProjectStatusReportsStartCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportProjectStatusReportsStartCreateErrorResponse400Dto = ExportProjectStatusReportsStartCreateValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -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 { ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDto } from "./export-project-status-reports-start-create-non-field-errors-error-component.dto";
|
|
11
|
+
import { ExportProjectStatusReportsStartCreateFileFormatErrorComponentDto } from "./export-project-status-reports-start-create-file-format-error-component.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportProjectStatusReportsStartCreateErrorDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportProjectStatusReportsStartCreateErrorDto = ExportProjectStatusReportsStartCreateFileFormatErrorComponentDto | ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDto;
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
export interface ExportProjectStatusReportsStartCreateFileFormatErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `file_format` - file_format
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportProjectStatusReportsStartCreateFileFormatErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ExportProjectStatusReportsStartCreateFileFormatErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportProjectStatusReportsStartCreateFileFormatErrorComponentDtoAttrEnum {
|
|
22
|
+
FileFormat = "file_format"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportProjectStatusReportsStartCreateFileFormatErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
package/model/export-project-status-reports-start-create-non-field-errors-error-component.dto.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
export interface ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportProjectStatusReportsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
27
|
+
}
|
|
@@ -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 { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
11
|
+
import { ExportProjectStatusReportsStartCreateErrorDto } from "./export-project-status-reports-start-create-error.dto";
|
|
12
|
+
export interface ExportProjectStatusReportsStartCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ExportProjectStatusReportsStartCreateErrorDto>;
|
|
15
|
+
}
|
|
@@ -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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { ExportProjectSummaryStartCreateValidationErrorDto } from "./export-project-summary-start-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportProjectSummaryStartCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportProjectSummaryStartCreateErrorResponse400Dto = ExportProjectSummaryStartCreateValidationErrorDto | ParseErrorResponseDto;
|
|
@@ -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 { ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDto } from "./export-project-summary-start-create-non-field-errors-error-component.dto";
|
|
11
|
+
import { ExportProjectSummaryStartCreateFileFormatErrorComponentDto } from "./export-project-summary-start-create-file-format-error-component.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportProjectSummaryStartCreateErrorDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportProjectSummaryStartCreateErrorDto = ExportProjectSummaryStartCreateFileFormatErrorComponentDto | ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDto;
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
export interface ExportProjectSummaryStartCreateFileFormatErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `file_format` - file_format
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportProjectSummaryStartCreateFileFormatErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ExportProjectSummaryStartCreateFileFormatErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportProjectSummaryStartCreateFileFormatErrorComponentDtoAttrEnum {
|
|
22
|
+
FileFormat = "file_format"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportProjectSummaryStartCreateFileFormatErrorComponentDtoCodeEnum {
|
|
25
|
+
InvalidChoice = "invalid_choice",
|
|
26
|
+
Null = "null",
|
|
27
|
+
Required = "required"
|
|
28
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
export interface ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportProjectSummaryStartCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
25
|
+
Invalid = "invalid",
|
|
26
|
+
Null = "null"
|
|
27
|
+
}
|
|
@@ -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 { ExportProjectSummaryStartCreateErrorDto } from "./export-project-summary-start-create-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface ExportProjectSummaryStartCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ExportProjectSummaryStartCreateErrorDto>;
|
|
15
|
+
}
|
|
@@ -11,6 +11,6 @@ import { PDFFileFormatEnumDto } from "./pdf-file-format-enum.dto";
|
|
|
11
11
|
/**
|
|
12
12
|
* Serializer to start export job.
|
|
13
13
|
*/
|
|
14
|
-
export interface
|
|
14
|
+
export interface JobHourlyReportExportResourceCreateExportJobRequestDto {
|
|
15
15
|
file_format: PDFFileFormatEnumDto;
|
|
16
16
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -612,6 +612,16 @@ export * from "./export-project-resources-start-create-error-response400.dto";
|
|
|
612
612
|
export * from "./export-project-resources-start-create-file-format-error-component.dto";
|
|
613
613
|
export * from "./export-project-resources-start-create-non-field-errors-error-component.dto";
|
|
614
614
|
export * from "./export-project-resources-start-create-validation-error.dto";
|
|
615
|
+
export * from "./export-project-status-reports-start-create-error.dto";
|
|
616
|
+
export * from "./export-project-status-reports-start-create-error-response400.dto";
|
|
617
|
+
export * from "./export-project-status-reports-start-create-file-format-error-component.dto";
|
|
618
|
+
export * from "./export-project-status-reports-start-create-non-field-errors-error-component.dto";
|
|
619
|
+
export * from "./export-project-status-reports-start-create-validation-error.dto";
|
|
620
|
+
export * from "./export-project-summary-start-create-error.dto";
|
|
621
|
+
export * from "./export-project-summary-start-create-error-response400.dto";
|
|
622
|
+
export * from "./export-project-summary-start-create-file-format-error-component.dto";
|
|
623
|
+
export * from "./export-project-summary-start-create-non-field-errors-error-component.dto";
|
|
624
|
+
export * from "./export-project-summary-start-create-validation-error.dto";
|
|
615
625
|
export * from "./export-projects-start-create-error.dto";
|
|
616
626
|
export * from "./export-projects-start-create-error-response400.dto";
|
|
617
627
|
export * from "./export-projects-start-create-file-format-error-component.dto";
|
|
@@ -643,7 +653,7 @@ export * from "./jira-client-create-project-create-project-name-error-component.
|
|
|
643
653
|
export * from "./jira-client-create-project-create-validation-error.dto";
|
|
644
654
|
export * from "./jira-instance.dto";
|
|
645
655
|
export * from "./job.dto";
|
|
646
|
-
export * from "./job-hourly-report-export-
|
|
656
|
+
export * from "./job-hourly-report-export-resource-create-export-job-request.dto";
|
|
647
657
|
export * from "./job-report-data.dto";
|
|
648
658
|
export * from "./job-report-department-data.dto";
|
|
649
659
|
export * from "./job-report-department.dto";
|
|
@@ -1075,6 +1085,8 @@ export * from "./project-serializer-with-month-stats.dto";
|
|
|
1075
1085
|
export * from "./project-serializer-with-stats.dto";
|
|
1076
1086
|
export * from "./project-status-enum.dto";
|
|
1077
1087
|
export * from "./project-status-report.dto";
|
|
1088
|
+
export * from "./project-status-report-resource-create-export-job-request.dto";
|
|
1089
|
+
export * from "./project-summary-export-resource-create-export-job-request.dto";
|
|
1078
1090
|
export * from "./projects-create-actual-end-date-error-component.dto";
|
|
1079
1091
|
export * from "./projects-create-actual-site-error-component.dto";
|
|
1080
1092
|
export * from "./projects-create-billing-frequency-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
|
+
import { FileFormatEnumDto } from "./file-format-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to start export job.
|
|
13
|
+
*/
|
|
14
|
+
export interface ProjectStatusReportResourceCreateExportJobRequestDto {
|
|
15
|
+
file_format: FileFormatEnumDto;
|
|
16
|
+
}
|
|
@@ -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 { PDFFileFormatEnumDto } from "./pdf-file-format-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to start export job.
|
|
13
|
+
*/
|
|
14
|
+
export interface ProjectSummaryExportResourceCreateExportJobRequestDto {
|
|
15
|
+
file_format: PDFFileFormatEnumDto;
|
|
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.3",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.8)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|