@saritasa/crm-delmar-core-sdk 0.1.41 → 0.1.43
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-client-summary-api.service.d.ts +98 -0
- package/api/export-client-summary-api.serviceInterface.d.ts +70 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +290 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/client-summary-export-resource-create-export-job-request.dto.d.ts +16 -0
- package/model/export-client-summary-start-create-error-response400.dto.d.ts +16 -0
- package/model/export-client-summary-start-create-error.dto.d.ts +16 -0
- package/model/export-client-summary-start-create-file-format-error-component.dto.d.ts +28 -0
- package/model/export-client-summary-start-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/export-client-summary-start-create-validation-error.dto.d.ts +15 -0
- package/model/models.d.ts +6 -0
- package/model/task-progress.dto.d.ts +1 -1
- 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 { PDFFileFormatEnumDto } from "./pdf-file-format-enum.dto";
|
|
11
|
+
/**
|
|
12
|
+
* Serializer to start export job.
|
|
13
|
+
*/
|
|
14
|
+
export interface ClientSummaryExportResourceCreateExportJobRequestDto {
|
|
15
|
+
file_format: PDFFileFormatEnumDto;
|
|
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 { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
|
+
import { ExportClientSummaryStartCreateValidationErrorDto } from "./export-client-summary-start-create-validation-error.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportClientSummaryStartCreateErrorResponse400Dto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportClientSummaryStartCreateErrorResponse400Dto = ExportClientSummaryStartCreateValidationErrorDto | 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 { ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDto } from "./export-client-summary-start-create-non-field-errors-error-component.dto";
|
|
11
|
+
import { ExportClientSummaryStartCreateFileFormatErrorComponentDto } from "./export-client-summary-start-create-file-format-error-component.dto";
|
|
12
|
+
/**
|
|
13
|
+
* @type ExportClientSummaryStartCreateErrorDto
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export type ExportClientSummaryStartCreateErrorDto = ExportClientSummaryStartCreateFileFormatErrorComponentDto | ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDto;
|
|
@@ -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 ExportClientSummaryStartCreateFileFormatErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `file_format` - file_format
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportClientSummaryStartCreateFileFormatErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid_choice` - invalid_choice * `null` - null * `required` - required
|
|
17
|
+
*/
|
|
18
|
+
code: ExportClientSummaryStartCreateFileFormatErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportClientSummaryStartCreateFileFormatErrorComponentDtoAttrEnum {
|
|
22
|
+
FileFormat = "file_format"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportClientSummaryStartCreateFileFormatErrorComponentDtoCodeEnum {
|
|
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 ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDto {
|
|
11
|
+
/**
|
|
12
|
+
* * `non_field_errors` - non_field_errors
|
|
13
|
+
*/
|
|
14
|
+
attr: ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
15
|
+
/**
|
|
16
|
+
* * `invalid` - invalid * `null` - null
|
|
17
|
+
*/
|
|
18
|
+
code: ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDtoAttrEnum {
|
|
22
|
+
NonFieldErrors = "non_field_errors"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ExportClientSummaryStartCreateNonFieldErrorsErrorComponentDtoCodeEnum {
|
|
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 { ExportClientSummaryStartCreateErrorDto } from "./export-client-summary-start-create-error.dto";
|
|
11
|
+
import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
|
|
12
|
+
export interface ExportClientSummaryStartCreateValidationErrorDto {
|
|
13
|
+
type: ValidationErrorEnumDto;
|
|
14
|
+
errors: Array<ExportClientSummaryStartCreateErrorDto>;
|
|
15
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ export * from "./client-resource-create-export-job-request.dto";
|
|
|
153
153
|
export * from "./client-serializer-with-month-stats.dto";
|
|
154
154
|
export * from "./client-serializer-with-stats.dto";
|
|
155
155
|
export * from "./client-status-enum.dto";
|
|
156
|
+
export * from "./client-summary-export-resource-create-export-job-request.dto";
|
|
156
157
|
export * from "./clients-create-account-manager-error-component.dto";
|
|
157
158
|
export * from "./clients-create-address1-error-component.dto";
|
|
158
159
|
export * from "./clients-create-address2-error-component.dto";
|
|
@@ -558,6 +559,11 @@ export * from "./export-client-notes-start-create-error-response400.dto";
|
|
|
558
559
|
export * from "./export-client-notes-start-create-file-format-error-component.dto";
|
|
559
560
|
export * from "./export-client-notes-start-create-non-field-errors-error-component.dto";
|
|
560
561
|
export * from "./export-client-notes-start-create-validation-error.dto";
|
|
562
|
+
export * from "./export-client-summary-start-create-error.dto";
|
|
563
|
+
export * from "./export-client-summary-start-create-error-response400.dto";
|
|
564
|
+
export * from "./export-client-summary-start-create-file-format-error-component.dto";
|
|
565
|
+
export * from "./export-client-summary-start-create-non-field-errors-error-component.dto";
|
|
566
|
+
export * from "./export-client-summary-start-create-validation-error.dto";
|
|
561
567
|
export * from "./export-clients-start-create-error.dto";
|
|
562
568
|
export * from "./export-clients-start-create-error-response400.dto";
|
|
563
569
|
export * from "./export-clients-start-create-file-format-error-component.dto";
|
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.43",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.31)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|