@saritasa/crm-delmar-core-sdk 0.1.4 → 0.1.5
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/fesm2022/saritasa-crm-delmar-core-sdk.mjs +45 -45
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +2 -2
- package/model/user-period-request.dto.d.ts +1 -1
- package/model/user-period-update-request.dto.d.ts +1 -1
- package/model/{user-periods-create-extra-approver-users-error-component.dto.d.ts → user-periods-create-approver-users-error-component.dto.d.ts} +7 -7
- package/model/user-periods-create-error.dto.d.ts +2 -2
- package/model/{user-periods-update-extra-approver-users-error-component.dto.d.ts → user-periods-update-approver-users-error-component.dto.d.ts} +7 -7
- package/model/user-periods-update-error.dto.d.ts +2 -2
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -1589,10 +1589,10 @@ export * from "./user-period-type-enum.dto";
|
|
|
1589
1589
|
export * from "./user-period-update.dto";
|
|
1590
1590
|
export * from "./user-period-update-request.dto";
|
|
1591
1591
|
export * from "./user-period-year-data.dto";
|
|
1592
|
+
export * from "./user-periods-create-approver-users-error-component.dto";
|
|
1592
1593
|
export * from "./user-periods-create-description-error-component.dto";
|
|
1593
1594
|
export * from "./user-periods-create-error.dto";
|
|
1594
1595
|
export * from "./user-periods-create-error-response400.dto";
|
|
1595
|
-
export * from "./user-periods-create-extra-approver-users-error-component.dto";
|
|
1596
1596
|
export * from "./user-periods-create-file-error-component.dto";
|
|
1597
1597
|
export * from "./user-periods-create-non-field-errors-error-component.dto";
|
|
1598
1598
|
export * from "./user-periods-create-period-end-error-component.dto";
|
|
@@ -1632,10 +1632,10 @@ export * from "./user-periods-review-request-create-validation-error.dto";
|
|
|
1632
1632
|
export * from "./user-periods-stats-retrieve-error-response400.dto";
|
|
1633
1633
|
export * from "./user-periods-stats-retrieve-user-error-component.dto";
|
|
1634
1634
|
export * from "./user-periods-stats-retrieve-validation-error.dto";
|
|
1635
|
+
export * from "./user-periods-update-approver-users-error-component.dto";
|
|
1635
1636
|
export * from "./user-periods-update-description-error-component.dto";
|
|
1636
1637
|
export * from "./user-periods-update-error.dto";
|
|
1637
1638
|
export * from "./user-periods-update-error-response400.dto";
|
|
1638
|
-
export * from "./user-periods-update-extra-approver-users-error-component.dto";
|
|
1639
1639
|
export * from "./user-periods-update-file-error-component.dto";
|
|
1640
1640
|
export * from "./user-periods-update-non-field-errors-error-component.dto";
|
|
1641
1641
|
export * from "./user-periods-update-period-end-error-component.dto";
|
|
@@ -14,7 +14,7 @@ import { DateRangeFieldRequestDto } from "./date-range-field-request.dto";
|
|
|
14
14
|
export interface UserPeriodUpdateRequestDto {
|
|
15
15
|
period: DateRangeFieldRequestDto;
|
|
16
16
|
user: number;
|
|
17
|
-
|
|
17
|
+
approver_users: Array<number>;
|
|
18
18
|
file?: string | null;
|
|
19
19
|
description?: string;
|
|
20
20
|
}
|
|
@@ -7,21 +7,21 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
export interface
|
|
10
|
+
export interface UserPeriodsCreateApproverUsersErrorComponentDto {
|
|
11
11
|
/**
|
|
12
|
-
* * `
|
|
12
|
+
* * `approver_users` - approver_users
|
|
13
13
|
*/
|
|
14
|
-
attr:
|
|
14
|
+
attr: UserPeriodsCreateApproverUsersErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
16
|
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required
|
|
17
17
|
*/
|
|
18
|
-
code:
|
|
18
|
+
code: UserPeriodsCreateApproverUsersErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
20
20
|
}
|
|
21
|
-
export declare enum
|
|
22
|
-
|
|
21
|
+
export declare enum UserPeriodsCreateApproverUsersErrorComponentDtoAttrEnum {
|
|
22
|
+
ApproverUsers = "approver_users"
|
|
23
23
|
}
|
|
24
|
-
export declare enum
|
|
24
|
+
export declare enum UserPeriodsCreateApproverUsersErrorComponentDtoCodeEnum {
|
|
25
25
|
DoesNotExist = "does_not_exist",
|
|
26
26
|
IncorrectType = "incorrect_type",
|
|
27
27
|
NotAList = "not_a_list",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
import { UserPeriodsCreateNonFieldErrorsErrorComponentDto } from "./user-periods-create-non-field-errors-error-component.dto";
|
|
11
11
|
import { UserPeriodsCreateTypeErrorComponentDto } from "./user-periods-create-type-error-component.dto";
|
|
12
12
|
import { UserPeriodsCreateFileErrorComponentDto } from "./user-periods-create-file-error-component.dto";
|
|
13
|
+
import { UserPeriodsCreateApproverUsersErrorComponentDto } from "./user-periods-create-approver-users-error-component.dto";
|
|
13
14
|
import { UserPeriodsCreatePeriodEndErrorComponentDto } from "./user-periods-create-period-end-error-component.dto";
|
|
14
15
|
import { UserPeriodsCreateDescriptionErrorComponentDto } from "./user-periods-create-description-error-component.dto";
|
|
15
16
|
import { UserPeriodsCreatePeriodStartErrorComponentDto } from "./user-periods-create-period-start-error-component.dto";
|
|
16
|
-
import { UserPeriodsCreateExtraApproverUsersErrorComponentDto } from "./user-periods-create-extra-approver-users-error-component.dto";
|
|
17
17
|
import { UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDto } from "./user-periods-create-period-non-field-errors-error-component.dto";
|
|
18
18
|
import { UserPeriodsCreateUserErrorComponentDto } from "./user-periods-create-user-error-component.dto";
|
|
19
19
|
/**
|
|
20
20
|
* @type UserPeriodsCreateErrorDto
|
|
21
21
|
* @export
|
|
22
22
|
*/
|
|
23
|
-
export type UserPeriodsCreateErrorDto =
|
|
23
|
+
export type UserPeriodsCreateErrorDto = UserPeriodsCreateApproverUsersErrorComponentDto | UserPeriodsCreateDescriptionErrorComponentDto | UserPeriodsCreateFileErrorComponentDto | UserPeriodsCreateNonFieldErrorsErrorComponentDto | UserPeriodsCreatePeriodEndErrorComponentDto | UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDto | UserPeriodsCreatePeriodStartErrorComponentDto | UserPeriodsCreateTypeErrorComponentDto | UserPeriodsCreateUserErrorComponentDto;
|
|
@@ -7,21 +7,21 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
export interface
|
|
10
|
+
export interface UserPeriodsUpdateApproverUsersErrorComponentDto {
|
|
11
11
|
/**
|
|
12
|
-
* * `
|
|
12
|
+
* * `approver_users` - approver_users
|
|
13
13
|
*/
|
|
14
|
-
attr:
|
|
14
|
+
attr: UserPeriodsUpdateApproverUsersErrorComponentDtoAttrEnum;
|
|
15
15
|
/**
|
|
16
16
|
* * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required
|
|
17
17
|
*/
|
|
18
|
-
code:
|
|
18
|
+
code: UserPeriodsUpdateApproverUsersErrorComponentDtoCodeEnum;
|
|
19
19
|
detail: string;
|
|
20
20
|
}
|
|
21
|
-
export declare enum
|
|
22
|
-
|
|
21
|
+
export declare enum UserPeriodsUpdateApproverUsersErrorComponentDtoAttrEnum {
|
|
22
|
+
ApproverUsers = "approver_users"
|
|
23
23
|
}
|
|
24
|
-
export declare enum
|
|
24
|
+
export declare enum UserPeriodsUpdateApproverUsersErrorComponentDtoCodeEnum {
|
|
25
25
|
DoesNotExist = "does_not_exist",
|
|
26
26
|
IncorrectType = "incorrect_type",
|
|
27
27
|
NotAList = "not_a_list",
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
import { UserPeriodsUpdateExtraApproverUsersErrorComponentDto } from "./user-periods-update-extra-approver-users-error-component.dto";
|
|
11
10
|
import { UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDto } from "./user-periods-update-period-non-field-errors-error-component.dto";
|
|
12
11
|
import { UserPeriodsUpdateFileErrorComponentDto } from "./user-periods-update-file-error-component.dto";
|
|
13
12
|
import { UserPeriodsUpdateNonFieldErrorsErrorComponentDto } from "./user-periods-update-non-field-errors-error-component.dto";
|
|
14
13
|
import { UserPeriodsUpdatePeriodStartErrorComponentDto } from "./user-periods-update-period-start-error-component.dto";
|
|
14
|
+
import { UserPeriodsUpdateApproverUsersErrorComponentDto } from "./user-periods-update-approver-users-error-component.dto";
|
|
15
15
|
import { UserPeriodsUpdatePeriodEndErrorComponentDto } from "./user-periods-update-period-end-error-component.dto";
|
|
16
16
|
import { UserPeriodsUpdateDescriptionErrorComponentDto } from "./user-periods-update-description-error-component.dto";
|
|
17
17
|
import { UserPeriodsUpdateUserErrorComponentDto } from "./user-periods-update-user-error-component.dto";
|
|
@@ -19,4 +19,4 @@ import { UserPeriodsUpdateUserErrorComponentDto } from "./user-periods-update-us
|
|
|
19
19
|
* @type UserPeriodsUpdateErrorDto
|
|
20
20
|
* @export
|
|
21
21
|
*/
|
|
22
|
-
export type UserPeriodsUpdateErrorDto =
|
|
22
|
+
export type UserPeriodsUpdateErrorDto = UserPeriodsUpdateApproverUsersErrorComponentDto | UserPeriodsUpdateDescriptionErrorComponentDto | UserPeriodsUpdateFileErrorComponentDto | UserPeriodsUpdateNonFieldErrorsErrorComponentDto | UserPeriodsUpdatePeriodEndErrorComponentDto | UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDto | UserPeriodsUpdatePeriodStartErrorComponentDto | UserPeriodsUpdateUserErrorComponentDto;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
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",
|
|
8
|
-
"url": "git+https://github.com/saritasa-nest/saritasa-crm-delmar-
|
|
8
|
+
"url": "git+https://github.com/saritasa-nest/saritasa-crm-delmar-core-backend-sdk.git"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [
|
|
11
11
|
"openapi-client",
|