@saritasa/crm-delmar-core-sdk 0.1.6 → 0.1.7

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/model/models.d.ts CHANGED
@@ -1793,6 +1793,7 @@ export * from "./users-partial-update-is-part-time-error-component.dto";
1793
1793
  export * from "./users-partial-update-is-trainee-error-component.dto";
1794
1794
  export * from "./users-partial-update-location-error-component.dto";
1795
1795
  export * from "./users-partial-update-non-field-errors-error-component.dto";
1796
+ export * from "./users-partial-update-onsite-error-component.dto";
1796
1797
  export * from "./users-partial-update-personal-email-error-component.dto";
1797
1798
  export * from "./users-partial-update-personal-phone-error-component.dto";
1798
1799
  export * from "./users-partial-update-slack-id-error-component.dto";
@@ -21,6 +21,7 @@ export interface PatchedPatchUserRequestDto {
21
21
  is_intern?: boolean;
22
22
  is_part_time?: boolean;
23
23
  is_trainee?: boolean;
24
+ onsite?: boolean;
24
25
  branch?: number;
25
26
  department?: number;
26
27
  work_type?: number;
@@ -14,6 +14,7 @@ import { UsersPartialUpdateIsPartTimeErrorComponentDto } from "./users-partial-u
14
14
  import { UsersPartialUpdateHomePhoneErrorComponentDto } from "./users-partial-update-home-phone-error-component.dto";
15
15
  import { UsersPartialUpdateSupervisorsErrorComponentDto } from "./users-partial-update-supervisors-error-component.dto";
16
16
  import { UsersPartialUpdateBranchErrorComponentDto } from "./users-partial-update-branch-error-component.dto";
17
+ import { UsersPartialUpdateOnsiteErrorComponentDto } from "./users-partial-update-onsite-error-component.dto";
17
18
  import { UsersPartialUpdatePersonalEmailErrorComponentDto } from "./users-partial-update-personal-email-error-component.dto";
18
19
  import { UsersPartialUpdatePersonalPhoneErrorComponentDto } from "./users-partial-update-personal-phone-error-component.dto";
19
20
  import { UsersPartialUpdateLocationErrorComponentDto } from "./users-partial-update-location-error-component.dto";
@@ -27,4 +28,4 @@ import { UsersPartialUpdateIsInternErrorComponentDto } from "./users-partial-upd
27
28
  * @type UsersPartialUpdateErrorDto
28
29
  * @export
29
30
  */
30
- export type UsersPartialUpdateErrorDto = UsersPartialUpdateBranchErrorComponentDto | UsersPartialUpdateDepartmentErrorComponentDto | UsersPartialUpdateGithubUsernameErrorComponentDto | UsersPartialUpdateHomePhoneErrorComponentDto | UsersPartialUpdateIsInternErrorComponentDto | UsersPartialUpdateIsPartTimeErrorComponentDto | UsersPartialUpdateIsTraineeErrorComponentDto | UsersPartialUpdateLocationErrorComponentDto | UsersPartialUpdateNonFieldErrorsErrorComponentDto | UsersPartialUpdatePersonalEmailErrorComponentDto | UsersPartialUpdatePersonalPhoneErrorComponentDto | UsersPartialUpdateSlackIdErrorComponentDto | UsersPartialUpdateSupervisorsErrorComponentDto | UsersPartialUpdateTimezoneErrorComponentDto | UsersPartialUpdateUtilizationPercentErrorComponentDto | UsersPartialUpdateWorkTypeErrorComponentDto;
31
+ export type UsersPartialUpdateErrorDto = UsersPartialUpdateBranchErrorComponentDto | UsersPartialUpdateDepartmentErrorComponentDto | UsersPartialUpdateGithubUsernameErrorComponentDto | UsersPartialUpdateHomePhoneErrorComponentDto | UsersPartialUpdateIsInternErrorComponentDto | UsersPartialUpdateIsPartTimeErrorComponentDto | UsersPartialUpdateIsTraineeErrorComponentDto | UsersPartialUpdateLocationErrorComponentDto | UsersPartialUpdateNonFieldErrorsErrorComponentDto | UsersPartialUpdateOnsiteErrorComponentDto | UsersPartialUpdatePersonalEmailErrorComponentDto | UsersPartialUpdatePersonalPhoneErrorComponentDto | UsersPartialUpdateSlackIdErrorComponentDto | UsersPartialUpdateSupervisorsErrorComponentDto | UsersPartialUpdateTimezoneErrorComponentDto | UsersPartialUpdateUtilizationPercentErrorComponentDto | UsersPartialUpdateWorkTypeErrorComponentDto;
@@ -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 UsersPartialUpdateOnsiteErrorComponentDto {
11
+ /**
12
+ * * `onsite` - onsite
13
+ */
14
+ attr: UsersPartialUpdateOnsiteErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `null` - null * `required` - required
17
+ */
18
+ code: UsersPartialUpdateOnsiteErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum UsersPartialUpdateOnsiteErrorComponentDtoAttrEnum {
22
+ Onsite = "onsite"
23
+ }
24
+ export declare enum UsersPartialUpdateOnsiteErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ Null = "null",
27
+ Required = "required"
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
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": {