@saritasa/crm-delmar-core-sdk 0.1.1 → 0.1.2
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-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 +274 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- 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/models.d.ts +6 -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 { 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
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -612,6 +612,11 @@ 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-summary-start-create-error.dto";
|
|
616
|
+
export * from "./export-project-summary-start-create-error-response400.dto";
|
|
617
|
+
export * from "./export-project-summary-start-create-file-format-error-component.dto";
|
|
618
|
+
export * from "./export-project-summary-start-create-non-field-errors-error-component.dto";
|
|
619
|
+
export * from "./export-project-summary-start-create-validation-error.dto";
|
|
615
620
|
export * from "./export-projects-start-create-error.dto";
|
|
616
621
|
export * from "./export-projects-start-create-error-response400.dto";
|
|
617
622
|
export * from "./export-projects-start-create-file-format-error-component.dto";
|
|
@@ -1075,6 +1080,7 @@ export * from "./project-serializer-with-month-stats.dto";
|
|
|
1075
1080
|
export * from "./project-serializer-with-stats.dto";
|
|
1076
1081
|
export * from "./project-status-enum.dto";
|
|
1077
1082
|
export * from "./project-status-report.dto";
|
|
1083
|
+
export * from "./project-summary-export-resource-create-export-job-request.dto";
|
|
1078
1084
|
export * from "./projects-create-actual-end-date-error-component.dto";
|
|
1079
1085
|
export * from "./projects-create-actual-site-error-component.dto";
|
|
1080
1086
|
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 { 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.2",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.7)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|