@saritasa/crm-delmar-core-sdk 0.0.14
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 +5 -0
- package/api/api.d.ts +73 -0
- package/api/branch-periods-api.service.d.ts +124 -0
- package/api/branch-periods-api.serviceInterface.d.ts +68 -0
- package/api/branches-api.service.d.ts +146 -0
- package/api/branches-api.serviceInterface.d.ts +94 -0
- package/api/departments-api.service.d.ts +124 -0
- package/api/departments-api.serviceInterface.d.ts +74 -0
- package/api/dismissal-reasons-api.service.d.ts +124 -0
- package/api/dismissal-reasons-api.serviceInterface.d.ts +74 -0
- package/api/jira-client-api.service.d.ts +39 -0
- package/api/jira-client-api.serviceInterface.d.ts +27 -0
- package/api/jira-instances-api.service.d.ts +61 -0
- package/api/jira-instances-api.serviceInterface.d.ts +39 -0
- package/api/locations-api.service.d.ts +124 -0
- package/api/locations-api.serviceInterface.d.ts +74 -0
- package/api/permission-data-api.service.d.ts +38 -0
- package/api/permission-data-api.serviceInterface.d.ts +22 -0
- package/api/profile-api.service.d.ts +59 -0
- package/api/profile-api.serviceInterface.d.ts +32 -0
- package/api/projects-api.service.d.ts +61 -0
- package/api/projects-api.serviceInterface.d.ts +39 -0
- package/api/roles-api.service.d.ts +124 -0
- package/api/roles-api.serviceInterface.d.ts +72 -0
- package/api/s3-api.service.d.ts +39 -0
- package/api/s3-api.serviceInterface.d.ts +27 -0
- package/api/search-periods-api.service.d.ts +39 -0
- package/api/search-periods-api.serviceInterface.d.ts +37 -0
- package/api/sso-api.service.d.ts +82 -0
- package/api/sso-api.serviceInterface.d.ts +48 -0
- package/api/token-api.service.d.ts +60 -0
- package/api/token-api.serviceInterface.d.ts +37 -0
- package/api/user-capacities-api.service.d.ts +104 -0
- package/api/user-capacities-api.serviceInterface.d.ts +78 -0
- package/api/user-logins-api.service.d.ts +82 -0
- package/api/user-logins-api.serviceInterface.d.ts +58 -0
- package/api/user-periods-api.service.d.ts +61 -0
- package/api/user-periods-api.serviceInterface.d.ts +39 -0
- package/api/user-timezone-setting-api.service.d.ts +59 -0
- package/api/user-timezone-setting-api.serviceInterface.d.ts +32 -0
- package/api/user-timezones-api.service.d.ts +61 -0
- package/api/user-timezones-api.serviceInterface.d.ts +42 -0
- package/api/users-api.service.d.ts +103 -0
- package/api/users-api.serviceInterface.d.ts +71 -0
- package/api/vendors-api.service.d.ts +124 -0
- package/api/vendors-api.serviceInterface.d.ts +70 -0
- package/api/who-am-i-api.service.d.ts +38 -0
- package/api/who-am-i-api.serviceInterface.d.ts +22 -0
- package/api/work-types-api.service.d.ts +124 -0
- package/api/work-types-api.serviceInterface.d.ts +74 -0
- package/api.module.d.ts +11 -0
- package/configuration.d.ts +104 -0
- package/encoder.d.ts +11 -0
- package/esm2022/api/api.mjs +99 -0
- package/esm2022/api/branch-periods-api.service.mjs +424 -0
- package/esm2022/api/branch-periods-api.serviceInterface.mjs +2 -0
- package/esm2022/api/branches-api.service.mjs +545 -0
- package/esm2022/api/branches-api.serviceInterface.mjs +2 -0
- package/esm2022/api/departments-api.service.mjs +446 -0
- package/esm2022/api/departments-api.serviceInterface.mjs +2 -0
- package/esm2022/api/dismissal-reasons-api.service.mjs +448 -0
- package/esm2022/api/dismissal-reasons-api.serviceInterface.mjs +2 -0
- package/esm2022/api/jira-client-api.service.mjs +166 -0
- package/esm2022/api/jira-client-api.serviceInterface.mjs +2 -0
- package/esm2022/api/jira-instances-api.service.mjs +225 -0
- package/esm2022/api/jira-instances-api.serviceInterface.mjs +2 -0
- package/esm2022/api/locations-api.service.mjs +446 -0
- package/esm2022/api/locations-api.serviceInterface.mjs +2 -0
- package/esm2022/api/permission-data-api.service.mjs +150 -0
- package/esm2022/api/permission-data-api.serviceInterface.mjs +2 -0
- package/esm2022/api/profile-api.service.mjs +218 -0
- package/esm2022/api/profile-api.serviceInterface.mjs +2 -0
- package/esm2022/api/projects-api.service.mjs +225 -0
- package/esm2022/api/projects-api.serviceInterface.mjs +2 -0
- package/esm2022/api/roles-api.service.mjs +438 -0
- package/esm2022/api/roles-api.serviceInterface.mjs +2 -0
- package/esm2022/api/s3-api.service.mjs +166 -0
- package/esm2022/api/s3-api.serviceInterface.mjs +2 -0
- package/esm2022/api/search-periods-api.service.mjs +206 -0
- package/esm2022/api/search-periods-api.serviceInterface.mjs +2 -0
- package/esm2022/api/sso-api.service.mjs +269 -0
- package/esm2022/api/sso-api.serviceInterface.mjs +2 -0
- package/esm2022/api/token-api.service.mjs +214 -0
- package/esm2022/api/token-api.serviceInterface.mjs +2 -0
- package/esm2022/api/user-capacities-api.service.mjs +432 -0
- package/esm2022/api/user-capacities-api.serviceInterface.mjs +2 -0
- package/esm2022/api/user-logins-api.service.mjs +329 -0
- package/esm2022/api/user-logins-api.serviceInterface.mjs +2 -0
- package/esm2022/api/user-periods-api.service.mjs +225 -0
- package/esm2022/api/user-periods-api.serviceInterface.mjs +2 -0
- package/esm2022/api/user-timezone-setting-api.service.mjs +219 -0
- package/esm2022/api/user-timezone-setting-api.serviceInterface.mjs +2 -0
- package/esm2022/api/user-timezones-api.service.mjs +247 -0
- package/esm2022/api/user-timezones-api.serviceInterface.mjs +2 -0
- package/esm2022/api/users-api.service.mjs +413 -0
- package/esm2022/api/users-api.serviceInterface.mjs +2 -0
- package/esm2022/api/vendors-api.service.mjs +432 -0
- package/esm2022/api/vendors-api.serviceInterface.mjs +2 -0
- package/esm2022/api/who-am-i-api.service.mjs +150 -0
- package/esm2022/api/who-am-i-api.serviceInterface.mjs +2 -0
- package/esm2022/api/work-types-api.service.mjs +446 -0
- package/esm2022/api/work-types-api.serviceInterface.mjs +2 -0
- package/esm2022/api.module.mjs +40 -0
- package/esm2022/configuration.mjs +140 -0
- package/esm2022/encoder.mjs +19 -0
- package/esm2022/index.mjs +7 -0
- package/esm2022/model/branch-period-request.dto.mjs +2 -0
- package/esm2022/model/branch-period-type-enum.dto.mjs +18 -0
- package/esm2022/model/branch-period.dto.mjs +2 -0
- package/esm2022/model/branch-periods-create-branch-error-component.dto.mjs +21 -0
- package/esm2022/model/branch-periods-create-description-error-component.dto.mjs +23 -0
- package/esm2022/model/branch-periods-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/branch-periods-create-error.dto.mjs +2 -0
- package/esm2022/model/branch-periods-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/branch-periods-create-period-end-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-create-period-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-create-period-start-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-create-title-error-component.dto.mjs +24 -0
- package/esm2022/model/branch-periods-create-type-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/branch-periods-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/branch-periods-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/branch-periods-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/branch-periods-update-branch-error-component.dto.mjs +21 -0
- package/esm2022/model/branch-periods-update-description-error-component.dto.mjs +23 -0
- package/esm2022/model/branch-periods-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/branch-periods-update-error.dto.mjs +2 -0
- package/esm2022/model/branch-periods-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/branch-periods-update-period-end-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-update-period-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-update-period-start-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-update-title-error-component.dto.mjs +24 -0
- package/esm2022/model/branch-periods-update-type-error-component.dto.mjs +20 -0
- package/esm2022/model/branch-periods-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/branch-request.dto.mjs +11 -0
- package/esm2022/model/branch-user-stats.dto.mjs +11 -0
- package/esm2022/model/branch.dto.mjs +2 -0
- package/esm2022/model/branches-create-address1-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-address2-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-ceo-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-create-code-error-component.dto.mjs +25 -0
- package/esm2022/model/branches-create-country-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/branches-create-error.dto.mjs +2 -0
- package/esm2022/model/branches-create-hr-email-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-icon-error-component.dto.mjs +22 -0
- package/esm2022/model/branches-create-is-oversea-error-component.dto.mjs +20 -0
- package/esm2022/model/branches-create-is-vacation-file-required-error-component.dto.mjs +20 -0
- package/esm2022/model/branches-create-name-error-component.dto.mjs +25 -0
- package/esm2022/model/branches-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-create-postal-code-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-state-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-create-vacation-days-count-error-component.dto.mjs +23 -0
- package/esm2022/model/branches-create-vacation-period-error-component.dto.mjs +23 -0
- package/esm2022/model/branches-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/branches-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/branches-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/branches-list-error.dto.mjs +2 -0
- package/esm2022/model/branches-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/branches-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/branches-update-address1-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-address2-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-ceo-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-update-code-error-component.dto.mjs +25 -0
- package/esm2022/model/branches-update-country-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/branches-update-error.dto.mjs +2 -0
- package/esm2022/model/branches-update-hr-email-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-icon-error-component.dto.mjs +22 -0
- package/esm2022/model/branches-update-is-oversea-error-component.dto.mjs +20 -0
- package/esm2022/model/branches-update-is-vacation-file-required-error-component.dto.mjs +20 -0
- package/esm2022/model/branches-update-name-error-component.dto.mjs +25 -0
- package/esm2022/model/branches-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-update-postal-code-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-state-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/branches-update-vacation-days-count-error-component.dto.mjs +23 -0
- package/esm2022/model/branches-update-vacation-period-error-component.dto.mjs +23 -0
- package/esm2022/model/branches-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/branches-users-stats-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/branches-users-stats-list-error.dto.mjs +2 -0
- package/esm2022/model/branches-users-stats-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-users-stats-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/branches-users-stats-list-users-search-error-component.dto.mjs +18 -0
- package/esm2022/model/branches-users-stats-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/client-error-enum.dto.mjs +17 -0
- package/esm2022/model/config-enum.dto.mjs +21 -0
- package/esm2022/model/create-jira-project-request.dto.mjs +11 -0
- package/esm2022/model/create-jira-project.dto.mjs +11 -0
- package/esm2022/model/date-range-field-request.dto.mjs +11 -0
- package/esm2022/model/date-range-field.dto.mjs +11 -0
- package/esm2022/model/debug-login-request.dto.mjs +11 -0
- package/esm2022/model/department-request.dto.mjs +11 -0
- package/esm2022/model/department.dto.mjs +2 -0
- package/esm2022/model/departments-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/departments-create-error.dto.mjs +2 -0
- package/esm2022/model/departments-create-name-error-component.dto.mjs +25 -0
- package/esm2022/model/departments-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/departments-create-utilization-error-component.dto.mjs +20 -0
- package/esm2022/model/departments-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/departments-create-work-types-error-component.dto.mjs +22 -0
- package/esm2022/model/departments-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/departments-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/departments-list-error.dto.mjs +2 -0
- package/esm2022/model/departments-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/departments-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/departments-list-name-error-component.dto.mjs +18 -0
- package/esm2022/model/departments-list-name-in-error-component.dto.mjs +18 -0
- package/esm2022/model/departments-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/departments-list-work-types-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/departments-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/departments-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/departments-update-error.dto.mjs +2 -0
- package/esm2022/model/departments-update-name-error-component.dto.mjs +25 -0
- package/esm2022/model/departments-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/departments-update-utilization-error-component.dto.mjs +20 -0
- package/esm2022/model/departments-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/departments-update-work-types-error-component.dto.mjs +22 -0
- package/esm2022/model/dismissal-reasons-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-create-error.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-create-name-error-component.dto.mjs +25 -0
- package/esm2022/model/dismissal-reasons-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/dismissal-reasons-create-type-error-component.dto.mjs +20 -0
- package/esm2022/model/dismissal-reasons-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-list-error.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/dismissal-reasons-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/dismissal-reasons-list-name-error-component.dto.mjs +18 -0
- package/esm2022/model/dismissal-reasons-list-name-in-error-component.dto.mjs +18 -0
- package/esm2022/model/dismissal-reasons-list-type-error-component.dto.mjs +18 -0
- package/esm2022/model/dismissal-reasons-list-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/dismissal-reasons-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-update-error.dto.mjs +2 -0
- package/esm2022/model/dismissal-reasons-update-name-error-component.dto.mjs +25 -0
- package/esm2022/model/dismissal-reasons-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/dismissal-reasons-update-type-error-component.dto.mjs +20 -0
- package/esm2022/model/dismissal-reasons-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/error-code401-enum.dto.mjs +18 -0
- package/esm2022/model/error-code403-enum.dto.mjs +17 -0
- package/esm2022/model/error-code404-enum.dto.mjs +17 -0
- package/esm2022/model/error-code405-enum.dto.mjs +17 -0
- package/esm2022/model/error-code406-enum.dto.mjs +17 -0
- package/esm2022/model/error-code415-enum.dto.mjs +17 -0
- package/esm2022/model/error-code500-enum.dto.mjs +17 -0
- package/esm2022/model/error-response401.dto.mjs +2 -0
- package/esm2022/model/error-response403.dto.mjs +2 -0
- package/esm2022/model/error-response404.dto.mjs +2 -0
- package/esm2022/model/error-response405.dto.mjs +2 -0
- package/esm2022/model/error-response406.dto.mjs +2 -0
- package/esm2022/model/error-response415.dto.mjs +2 -0
- package/esm2022/model/error-response500.dto.mjs +2 -0
- package/esm2022/model/error401.dto.mjs +2 -0
- package/esm2022/model/error403.dto.mjs +2 -0
- package/esm2022/model/error404.dto.mjs +2 -0
- package/esm2022/model/error405.dto.mjs +2 -0
- package/esm2022/model/error406.dto.mjs +2 -0
- package/esm2022/model/error415.dto.mjs +2 -0
- package/esm2022/model/error500.dto.mjs +2 -0
- package/esm2022/model/group-enum.dto.mjs +18 -0
- package/esm2022/model/jira-client-create-project-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/jira-client-create-project-create-error.dto.mjs +2 -0
- package/esm2022/model/jira-client-create-project-create-instance-error-component.dto.mjs +21 -0
- package/esm2022/model/jira-client-create-project-create-lead-email-error-component.dto.mjs +23 -0
- package/esm2022/model/jira-client-create-project-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/jira-client-create-project-create-project-name-error-component.dto.mjs +23 -0
- package/esm2022/model/jira-client-create-project-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/jira-instance.dto.mjs +11 -0
- package/esm2022/model/jira-instances-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/jira-instances-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/location-request.dto.mjs +11 -0
- package/esm2022/model/location.dto.mjs +11 -0
- package/esm2022/model/locations-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/locations-create-error.dto.mjs +2 -0
- package/esm2022/model/locations-create-icon-error-component.dto.mjs +22 -0
- package/esm2022/model/locations-create-name-error-component.dto.mjs +24 -0
- package/esm2022/model/locations-create-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/locations-create-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/locations-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/locations-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/locations-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/locations-list-error.dto.mjs +2 -0
- package/esm2022/model/locations-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/locations-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/locations-list-name-error-component.dto.mjs +18 -0
- package/esm2022/model/locations-list-name-in-error-component.dto.mjs +18 -0
- package/esm2022/model/locations-list-timezone-error-component.dto.mjs +18 -0
- package/esm2022/model/locations-list-timezone-in-error-component.dto.mjs +18 -0
- package/esm2022/model/locations-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/locations-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/locations-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/locations-update-error.dto.mjs +2 -0
- package/esm2022/model/locations-update-icon-error-component.dto.mjs +22 -0
- package/esm2022/model/locations-update-name-error-component.dto.mjs +24 -0
- package/esm2022/model/locations-update-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/locations-update-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/locations-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/login-open-id-request.dto.mjs +11 -0
- package/esm2022/model/models.mjs +585 -0
- package/esm2022/model/open-id-code-exchange-request.dto.mjs +11 -0
- package/esm2022/model/open-id-redirect.dto.mjs +11 -0
- package/esm2022/model/ordering-enum.dto.mjs +18 -0
- package/esm2022/model/paginated-branch-list.dto.mjs +2 -0
- package/esm2022/model/paginated-branch-period-list.dto.mjs +2 -0
- package/esm2022/model/paginated-branch-user-stats-list.dto.mjs +2 -0
- package/esm2022/model/paginated-department-list.dto.mjs +2 -0
- package/esm2022/model/paginated-jira-instance-list.dto.mjs +2 -0
- package/esm2022/model/paginated-location-list.dto.mjs +2 -0
- package/esm2022/model/paginated-project-list.dto.mjs +2 -0
- package/esm2022/model/paginated-role-list.dto.mjs +2 -0
- package/esm2022/model/paginated-simple-dismissal-reason-list.dto.mjs +2 -0
- package/esm2022/model/paginated-simple-vendor-list.dto.mjs +2 -0
- package/esm2022/model/paginated-user-capacity-list.dto.mjs +2 -0
- package/esm2022/model/paginated-user-list.dto.mjs +2 -0
- package/esm2022/model/paginated-user-login-list.dto.mjs +2 -0
- package/esm2022/model/paginated-user-period-list.dto.mjs +2 -0
- package/esm2022/model/paginated-user-sum-capacity-list.dto.mjs +2 -0
- package/esm2022/model/paginated-user-timezone-list.dto.mjs +2 -0
- package/esm2022/model/paginated-work-type-list.dto.mjs +2 -0
- package/esm2022/model/parse-error-code-enum.dto.mjs +17 -0
- package/esm2022/model/parse-error-response.dto.mjs +2 -0
- package/esm2022/model/parse-error.dto.mjs +2 -0
- package/esm2022/model/period-model-enum.dto.mjs +19 -0
- package/esm2022/model/period-type-enum.dto.mjs +25 -0
- package/esm2022/model/period-user.dto.mjs +2 -0
- package/esm2022/model/period.dto.mjs +2 -0
- package/esm2022/model/permission-data-request.dto.mjs +2 -0
- package/esm2022/model/permission-data-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/permission-data.dto.mjs +2 -0
- package/esm2022/model/permission-enum.dto.mjs +23 -0
- package/esm2022/model/profile-request.dto.mjs +11 -0
- package/esm2022/model/profile-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/profile-update-avatar-error-component.dto.mjs +22 -0
- package/esm2022/model/profile-update-branch-error-component.dto.mjs +21 -0
- package/esm2022/model/profile-update-created-by-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-department-error-component.dto.mjs +21 -0
- package/esm2022/model/profile-update-dismissal-reason-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/profile-update-error.dto.mjs +2 -0
- package/esm2022/model/profile-update-first-name-error-component.dto.mjs +24 -0
- package/esm2022/model/profile-update-last-name-error-component.dto.mjs +24 -0
- package/esm2022/model/profile-update-location-error-component.dto.mjs +21 -0
- package/esm2022/model/profile-update-middle-name-error-component.dto.mjs +22 -0
- package/esm2022/model/profile-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-recruited-by-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-role-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-updated-by-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/profile-update-vendor-error-component.dto.mjs +19 -0
- package/esm2022/model/profile-update-work-type-error-component.dto.mjs +21 -0
- package/esm2022/model/profile.dto.mjs +2 -0
- package/esm2022/model/project.dto.mjs +11 -0
- package/esm2022/model/projects-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/projects-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/role-edit-permission-request.dto.mjs +2 -0
- package/esm2022/model/role-edit-permission.dto.mjs +2 -0
- package/esm2022/model/role-request.dto.mjs +2 -0
- package/esm2022/model/role.dto.mjs +2 -0
- package/esm2022/model/roles-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/roles-create-error.dto.mjs +2 -0
- package/esm2022/model/roles-create-name-error-component.dto.mjs +25 -0
- package/esm2022/model/roles-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/roles-create-permissions-index-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-create-permissions-index-permission-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-create-permissions-index-scope-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-create-permissions-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/roles-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/roles-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/roles-list-error.dto.mjs +2 -0
- package/esm2022/model/roles-list-permissions-permission-error-component.dto.mjs +18 -0
- package/esm2022/model/roles-list-permissions-permission-in-error-component.dto.mjs +18 -0
- package/esm2022/model/roles-list-permissions-scope-error-component.dto.mjs +18 -0
- package/esm2022/model/roles-list-permissions-scope-in-error-component.dto.mjs +18 -0
- package/esm2022/model/roles-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/roles-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/roles-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/roles-update-error.dto.mjs +2 -0
- package/esm2022/model/roles-update-name-error-component.dto.mjs +25 -0
- package/esm2022/model/roles-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/roles-update-permissions-index-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-update-permissions-index-permission-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-update-permissions-index-scope-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-update-permissions-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/roles-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/s3-get-params-create-config-error-component.dto.mjs +20 -0
- package/esm2022/model/s3-get-params-create-content-length-error-component.dto.mjs +21 -0
- package/esm2022/model/s3-get-params-create-content-type-error-component.dto.mjs +23 -0
- package/esm2022/model/s3-get-params-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/s3-get-params-create-error.dto.mjs +2 -0
- package/esm2022/model/s3-get-params-create-filename-error-component.dto.mjs +23 -0
- package/esm2022/model/s3-get-params-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/s3-get-params-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/s3-params.dto.mjs +11 -0
- package/esm2022/model/s3-request-params-request.dto.mjs +2 -0
- package/esm2022/model/s3-upload.dto.mjs +2 -0
- package/esm2022/model/scope-enum.dto.mjs +21 -0
- package/esm2022/model/search-periods-list-branch-in-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/search-periods-list-error.dto.mjs +2 -0
- package/esm2022/model/search-periods-list-period-gte-error-component.dto.mjs +19 -0
- package/esm2022/model/search-periods-list-period-lte-error-component.dto.mjs +19 -0
- package/esm2022/model/search-periods-list-status-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-type-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-branch-in-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-department-in-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-in-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-status-in-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-supervisees-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-supervisors-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-user-work-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/search-periods-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/server-error-enum.dto.mjs +17 -0
- package/esm2022/model/simple-branch-request.dto.mjs +11 -0
- package/esm2022/model/simple-branch.dto.mjs +11 -0
- package/esm2022/model/simple-department-request.dto.mjs +11 -0
- package/esm2022/model/simple-department.dto.mjs +11 -0
- package/esm2022/model/simple-dismissal-reason-request.dto.mjs +2 -0
- package/esm2022/model/simple-dismissal-reason-type-enum.dto.mjs +18 -0
- package/esm2022/model/simple-dismissal-reason.dto.mjs +2 -0
- package/esm2022/model/simple-location-request.dto.mjs +11 -0
- package/esm2022/model/simple-location.dto.mjs +11 -0
- package/esm2022/model/simple-role-request.dto.mjs +11 -0
- package/esm2022/model/simple-role.dto.mjs +11 -0
- package/esm2022/model/simple-user-request.dto.mjs +11 -0
- package/esm2022/model/simple-user.dto.mjs +11 -0
- package/esm2022/model/simple-vendor-request.dto.mjs +11 -0
- package/esm2022/model/simple-vendor.dto.mjs +11 -0
- package/esm2022/model/simple-work-type-request.dto.mjs +11 -0
- package/esm2022/model/simple-work-type.dto.mjs +11 -0
- package/esm2022/model/sso-code-exchange-create-code-error-component.dto.mjs +23 -0
- package/esm2022/model/sso-code-exchange-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/sso-code-exchange-create-error.dto.mjs +2 -0
- package/esm2022/model/sso-code-exchange-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/sso-code-exchange-create-redirect-uri-error-component.dto.mjs +22 -0
- package/esm2022/model/sso-code-exchange-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/sso-debug-create-email-error-component.dto.mjs +23 -0
- package/esm2022/model/sso-debug-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/sso-debug-create-error.dto.mjs +2 -0
- package/esm2022/model/sso-debug-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/sso-debug-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/sso-start-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/sso-start-create-error.dto.mjs +2 -0
- package/esm2022/model/sso-start-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/sso-start-create-redirect-uri-error-component.dto.mjs +22 -0
- package/esm2022/model/sso-start-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/token-obtain-pair.dto.mjs +11 -0
- package/esm2022/model/token-refresh-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/token-refresh-create-error.dto.mjs +2 -0
- package/esm2022/model/token-refresh-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/token-refresh-create-refresh-error-component.dto.mjs +23 -0
- package/esm2022/model/token-refresh-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/token-refresh-request.dto.mjs +11 -0
- package/esm2022/model/token-refresh.dto.mjs +11 -0
- package/esm2022/model/token-verify-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/token-verify-create-error.dto.mjs +2 -0
- package/esm2022/model/token-verify-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/token-verify-create-token-error-component.dto.mjs +23 -0
- package/esm2022/model/token-verify-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/token-verify-request.dto.mjs +11 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-billable-capacity-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-branch-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-date-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-department-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-error.dto.mjs +2 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-total-capacity-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-user-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-capacities-calculate-capacity-create-work-type-error-component.dto.mjs +21 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-date-gte-error-component.dto.mjs +18 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-date-lte-error-component.dto.mjs +18 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-error.dto.mjs +2 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-object-ids-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-period-type-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-get-period-capacity-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-capacities-list-branch-id-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-branch-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-date-gte-error-component.dto.mjs +18 -0
- package/esm2022/model/user-capacities-list-date-lte-error-component.dto.mjs +18 -0
- package/esm2022/model/user-capacities-list-department-id-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-department-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-capacities-list-error.dto.mjs +2 -0
- package/esm2022/model/user-capacities-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-user-id-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-user-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-capacities-list-work-type-id-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-list-work-type-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/user-capacities-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-capacity-request.dto.mjs +11 -0
- package/esm2022/model/user-capacity.dto.mjs +11 -0
- package/esm2022/model/user-login-request.dto.mjs +11 -0
- package/esm2022/model/user-login.dto.mjs +2 -0
- package/esm2022/model/user-logins-list-branch-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-branch-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-department-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-department-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-logins-list-error.dto.mjs +2 -0
- package/esm2022/model/user-logins-list-role-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-role-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-logins-list-work-type-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-list-work-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/user-logins-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-logins-update-email-error-component.dto.mjs +25 -0
- package/esm2022/model/user-logins-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-logins-update-error.dto.mjs +2 -0
- package/esm2022/model/user-logins-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-logins-update-role-error-component.dto.mjs +19 -0
- package/esm2022/model/user-logins-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-period-status-enum.dto.mjs +19 -0
- package/esm2022/model/user-period-type-enum.dto.mjs +22 -0
- package/esm2022/model/user-period.dto.mjs +2 -0
- package/esm2022/model/user-periods-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-periods-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-request.dto.mjs +2 -0
- package/esm2022/model/user-status-enum.dto.mjs +19 -0
- package/esm2022/model/user-sum-capacity.dto.mjs +11 -0
- package/esm2022/model/user-timezone-request.dto.mjs +11 -0
- package/esm2022/model/user-timezone-setting-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-timezone-setting-create-error.dto.mjs +2 -0
- package/esm2022/model/user-timezone-setting-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-timezone-setting-create-ordering-error-component.dto.mjs +20 -0
- package/esm2022/model/user-timezone-setting-create-use12-format-error-component.dto.mjs +20 -0
- package/esm2022/model/user-timezone-setting-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/user-timezone-setting-request.dto.mjs +2 -0
- package/esm2022/model/user-timezone-setting-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-timezone-setting.dto.mjs +2 -0
- package/esm2022/model/user-timezone.dto.mjs +11 -0
- package/esm2022/model/user-timezones-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-timezones-save-all-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/user-timezones-save-all-create-error.dto.mjs +2 -0
- package/esm2022/model/user-timezones-save-all-create-index-name-error-component.dto.mjs +24 -0
- package/esm2022/model/user-timezones-save-all-create-index-non-field-errors-error-component.dto.mjs +20 -0
- package/esm2022/model/user-timezones-save-all-create-index-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/user-timezones-save-all-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/user-timezones-save-all-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/user.dto.mjs +2 -0
- package/esm2022/model/users-create-avatar-error-component.dto.mjs +22 -0
- package/esm2022/model/users-create-birthday-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-branch-error-component.dto.mjs +21 -0
- package/esm2022/model/users-create-created-by-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-department-error-component.dto.mjs +21 -0
- package/esm2022/model/users-create-dismissal-reason-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-email-error-component.dto.mjs +25 -0
- package/esm2022/model/users-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/users-create-error.dto.mjs +2 -0
- package/esm2022/model/users-create-first-name-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-first-working-day-by-contract-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-first-working-day-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-github-username-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-home-phone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-is-intern-error-component.dto.mjs +20 -0
- package/esm2022/model/users-create-is-part-time-error-component.dto.mjs +20 -0
- package/esm2022/model/users-create-jira-account-id-error-component.dto.mjs +23 -0
- package/esm2022/model/users-create-last-name-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-last-working-day-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-location-error-component.dto.mjs +21 -0
- package/esm2022/model/users-create-middle-name-error-component.dto.mjs +22 -0
- package/esm2022/model/users-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-office-phone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-onsite-error-component.dto.mjs +20 -0
- package/esm2022/model/users-create-personal-email-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-personal-phone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-recruited-by-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-role-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-skype-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-slack-id-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-status-error-component.dto.mjs +20 -0
- package/esm2022/model/users-create-supervisees-error-component.dto.mjs +22 -0
- package/esm2022/model/users-create-supervisors-error-component.dto.mjs +22 -0
- package/esm2022/model/users-create-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-create-updated-by-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-utilization-percent-error-component.dto.mjs +23 -0
- package/esm2022/model/users-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/users-create-vendor-error-component.dto.mjs +19 -0
- package/esm2022/model/users-create-work-type-error-component.dto.mjs +21 -0
- package/esm2022/model/users-list-branch-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-branch-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-department-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-department-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/users-list-error.dto.mjs +2 -0
- package/esm2022/model/users-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/users-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/users-list-status-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-status-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-supervisees-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/users-list-supervisors-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/users-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/users-list-work-type-error-component.dto.mjs +18 -0
- package/esm2022/model/users-list-work-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/users-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/users-update-avatar-error-component.dto.mjs +22 -0
- package/esm2022/model/users-update-birthday-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-branch-error-component.dto.mjs +21 -0
- package/esm2022/model/users-update-created-by-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-department-error-component.dto.mjs +21 -0
- package/esm2022/model/users-update-dismissal-reason-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-email-error-component.dto.mjs +25 -0
- package/esm2022/model/users-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/users-update-error.dto.mjs +2 -0
- package/esm2022/model/users-update-first-name-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-first-working-day-by-contract-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-first-working-day-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-github-username-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-home-phone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-is-intern-error-component.dto.mjs +20 -0
- package/esm2022/model/users-update-is-part-time-error-component.dto.mjs +20 -0
- package/esm2022/model/users-update-jira-account-id-error-component.dto.mjs +23 -0
- package/esm2022/model/users-update-last-name-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-last-working-day-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-location-error-component.dto.mjs +21 -0
- package/esm2022/model/users-update-middle-name-error-component.dto.mjs +22 -0
- package/esm2022/model/users-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-office-phone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-onsite-error-component.dto.mjs +20 -0
- package/esm2022/model/users-update-personal-email-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-personal-phone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-recruited-by-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-role-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-skype-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-slack-id-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-status-error-component.dto.mjs +20 -0
- package/esm2022/model/users-update-supervisees-error-component.dto.mjs +22 -0
- package/esm2022/model/users-update-supervisors-error-component.dto.mjs +22 -0
- package/esm2022/model/users-update-timezone-error-component.dto.mjs +24 -0
- package/esm2022/model/users-update-updated-by-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-utilization-percent-error-component.dto.mjs +23 -0
- package/esm2022/model/users-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/users-update-vendor-error-component.dto.mjs +19 -0
- package/esm2022/model/users-update-work-type-error-component.dto.mjs +21 -0
- package/esm2022/model/validation-error-enum.dto.mjs +17 -0
- package/esm2022/model/vendors-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/vendors-create-error.dto.mjs +2 -0
- package/esm2022/model/vendors-create-name-error-component.dto.mjs +25 -0
- package/esm2022/model/vendors-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/vendors-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/vendors-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/vendors-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/vendors-list-error.dto.mjs +2 -0
- package/esm2022/model/vendors-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/vendors-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/vendors-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/vendors-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/vendors-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/vendors-update-error.dto.mjs +2 -0
- package/esm2022/model/vendors-update-name-error-component.dto.mjs +25 -0
- package/esm2022/model/vendors-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/vendors-update-validation-error.dto.mjs +2 -0
- package/esm2022/model/who-am-i-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/who-am-i.dto.mjs +2 -0
- package/esm2022/model/work-type-request.dto.mjs +11 -0
- package/esm2022/model/work-type.dto.mjs +2 -0
- package/esm2022/model/work-types-create-department-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/work-types-create-error.dto.mjs +2 -0
- package/esm2022/model/work-types-create-name-error-component.dto.mjs +25 -0
- package/esm2022/model/work-types-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-create-parent-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/work-types-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/work-types-list-department-error-component.dto.mjs +18 -0
- package/esm2022/model/work-types-list-department-in-error-component.dto.mjs +18 -0
- package/esm2022/model/work-types-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/work-types-list-error.dto.mjs +2 -0
- package/esm2022/model/work-types-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-list-parent-error-component.dto.mjs +18 -0
- package/esm2022/model/work-types-list-parent-in-error-component.dto.mjs +18 -0
- package/esm2022/model/work-types-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/work-types-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/work-types-update-department-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-update-error-response400.dto.mjs +2 -0
- package/esm2022/model/work-types-update-error.dto.mjs +2 -0
- package/esm2022/model/work-types-update-name-error-component.dto.mjs +25 -0
- package/esm2022/model/work-types-update-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-update-parent-error-component.dto.mjs +19 -0
- package/esm2022/model/work-types-update-validation-error.dto.mjs +2 -0
- package/esm2022/param.mjs +2 -0
- package/esm2022/saritasa-crm-delmar-core-sdk.mjs +5 -0
- package/esm2022/variables.mjs +9 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +14555 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/model/branch-period-request.dto.d.ts +21 -0
- package/model/branch-period-type-enum.dto.d.ts +16 -0
- package/model/branch-period.dto.d.ts +26 -0
- package/model/branch-periods-create-branch-error-component.dto.d.ts +29 -0
- package/model/branch-periods-create-description-error-component.dto.d.ts +31 -0
- package/model/branch-periods-create-error-response400.dto.d.ts +16 -0
- package/model/branch-periods-create-error.dto.d.ts +22 -0
- package/model/branch-periods-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/branch-periods-create-period-end-error-component.dto.d.ts +28 -0
- package/model/branch-periods-create-period-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/branch-periods-create-period-start-error-component.dto.d.ts +28 -0
- package/model/branch-periods-create-title-error-component.dto.d.ts +32 -0
- package/model/branch-periods-create-type-error-component.dto.d.ts +28 -0
- package/model/branch-periods-create-validation-error.dto.d.ts +15 -0
- package/model/branch-periods-destroy-error-response400.dto.d.ts +15 -0
- package/model/branch-periods-list-error-response400.dto.d.ts +15 -0
- package/model/branch-periods-retrieve-error-response400.dto.d.ts +15 -0
- package/model/branch-periods-update-branch-error-component.dto.d.ts +29 -0
- package/model/branch-periods-update-description-error-component.dto.d.ts +31 -0
- package/model/branch-periods-update-error-response400.dto.d.ts +16 -0
- package/model/branch-periods-update-error.dto.d.ts +22 -0
- package/model/branch-periods-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/branch-periods-update-period-end-error-component.dto.d.ts +28 -0
- package/model/branch-periods-update-period-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/branch-periods-update-period-start-error-component.dto.d.ts +28 -0
- package/model/branch-periods-update-title-error-component.dto.d.ts +32 -0
- package/model/branch-periods-update-type-error-component.dto.d.ts +28 -0
- package/model/branch-periods-update-validation-error.dto.d.ts +15 -0
- package/model/branch-request.dto.d.ts +29 -0
- package/model/branch-user-stats.dto.d.ts +22 -0
- package/model/branch.dto.d.ts +34 -0
- package/model/branches-create-address1-error-component.dto.d.ts +32 -0
- package/model/branches-create-address2-error-component.dto.d.ts +32 -0
- package/model/branches-create-ceo-error-component.dto.d.ts +27 -0
- package/model/branches-create-code-error-component.dto.d.ts +33 -0
- package/model/branches-create-country-error-component.dto.d.ts +32 -0
- package/model/branches-create-error-response400.dto.d.ts +16 -0
- package/model/branches-create-error.dto.d.ts +30 -0
- package/model/branches-create-hr-email-error-component.dto.d.ts +32 -0
- package/model/branches-create-icon-error-component.dto.d.ts +30 -0
- package/model/branches-create-is-oversea-error-component.dto.d.ts +28 -0
- package/model/branches-create-is-vacation-file-required-error-component.dto.d.ts +28 -0
- package/model/branches-create-name-error-component.dto.d.ts +33 -0
- package/model/branches-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/branches-create-postal-code-error-component.dto.d.ts +32 -0
- package/model/branches-create-state-error-component.dto.d.ts +32 -0
- package/model/branches-create-timezone-error-component.dto.d.ts +32 -0
- package/model/branches-create-vacation-days-count-error-component.dto.d.ts +31 -0
- package/model/branches-create-vacation-period-error-component.dto.d.ts +31 -0
- package/model/branches-create-validation-error.dto.d.ts +15 -0
- package/model/branches-destroy-error-response400.dto.d.ts +15 -0
- package/model/branches-list-error-response400.dto.d.ts +16 -0
- package/model/branches-list-error.dto.d.ts +16 -0
- package/model/branches-list-id-error-component.dto.d.ts +27 -0
- package/model/branches-list-id-in-error-component.dto.d.ts +27 -0
- package/model/branches-list-validation-error.dto.d.ts +15 -0
- package/model/branches-retrieve-error-response400.dto.d.ts +15 -0
- package/model/branches-update-address1-error-component.dto.d.ts +32 -0
- package/model/branches-update-address2-error-component.dto.d.ts +32 -0
- package/model/branches-update-ceo-error-component.dto.d.ts +27 -0
- package/model/branches-update-code-error-component.dto.d.ts +33 -0
- package/model/branches-update-country-error-component.dto.d.ts +32 -0
- package/model/branches-update-error-response400.dto.d.ts +16 -0
- package/model/branches-update-error.dto.d.ts +30 -0
- package/model/branches-update-hr-email-error-component.dto.d.ts +32 -0
- package/model/branches-update-icon-error-component.dto.d.ts +30 -0
- package/model/branches-update-is-oversea-error-component.dto.d.ts +28 -0
- package/model/branches-update-is-vacation-file-required-error-component.dto.d.ts +28 -0
- package/model/branches-update-name-error-component.dto.d.ts +33 -0
- package/model/branches-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/branches-update-postal-code-error-component.dto.d.ts +32 -0
- package/model/branches-update-state-error-component.dto.d.ts +32 -0
- package/model/branches-update-timezone-error-component.dto.d.ts +32 -0
- package/model/branches-update-vacation-days-count-error-component.dto.d.ts +31 -0
- package/model/branches-update-vacation-period-error-component.dto.d.ts +31 -0
- package/model/branches-update-validation-error.dto.d.ts +15 -0
- package/model/branches-users-stats-list-error-response400.dto.d.ts +16 -0
- package/model/branches-users-stats-list-error.dto.d.ts +17 -0
- package/model/branches-users-stats-list-id-error-component.dto.d.ts +27 -0
- package/model/branches-users-stats-list-id-in-error-component.dto.d.ts +27 -0
- package/model/branches-users-stats-list-users-search-error-component.dto.d.ts +26 -0
- package/model/branches-users-stats-list-validation-error.dto.d.ts +15 -0
- package/model/client-error-enum.dto.d.ts +15 -0
- package/model/config-enum.dto.d.ts +19 -0
- package/model/create-jira-project-request.dto.d.ts +17 -0
- package/model/create-jira-project.dto.d.ts +17 -0
- package/model/date-range-field-request.dto.d.ts +16 -0
- package/model/date-range-field.dto.d.ts +16 -0
- package/model/debug-login-request.dto.d.ts +15 -0
- package/model/department-request.dto.d.ts +17 -0
- package/model/department.dto.d.ts +30 -0
- package/model/departments-create-error-response400.dto.d.ts +16 -0
- package/model/departments-create-error.dto.d.ts +18 -0
- package/model/departments-create-name-error-component.dto.d.ts +33 -0
- package/model/departments-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/departments-create-utilization-error-component.dto.d.ts +28 -0
- package/model/departments-create-validation-error.dto.d.ts +15 -0
- package/model/departments-create-work-types-error-component.dto.d.ts +30 -0
- package/model/departments-destroy-error-response400.dto.d.ts +15 -0
- package/model/departments-list-error-response400.dto.d.ts +16 -0
- package/model/departments-list-error.dto.d.ts +19 -0
- package/model/departments-list-id-error-component.dto.d.ts +27 -0
- package/model/departments-list-id-in-error-component.dto.d.ts +27 -0
- package/model/departments-list-name-error-component.dto.d.ts +26 -0
- package/model/departments-list-name-in-error-component.dto.d.ts +26 -0
- package/model/departments-list-validation-error.dto.d.ts +15 -0
- package/model/departments-list-work-types-id-in-error-component.dto.d.ts +27 -0
- package/model/departments-retrieve-error-response400.dto.d.ts +15 -0
- package/model/departments-update-error-response400.dto.d.ts +16 -0
- package/model/departments-update-error.dto.d.ts +18 -0
- package/model/departments-update-name-error-component.dto.d.ts +33 -0
- package/model/departments-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/departments-update-utilization-error-component.dto.d.ts +28 -0
- package/model/departments-update-validation-error.dto.d.ts +15 -0
- package/model/departments-update-work-types-error-component.dto.d.ts +30 -0
- package/model/dismissal-reasons-create-error-response400.dto.d.ts +16 -0
- package/model/dismissal-reasons-create-error.dto.d.ts +17 -0
- package/model/dismissal-reasons-create-name-error-component.dto.d.ts +33 -0
- package/model/dismissal-reasons-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/dismissal-reasons-create-type-error-component.dto.d.ts +28 -0
- package/model/dismissal-reasons-create-validation-error.dto.d.ts +15 -0
- package/model/dismissal-reasons-destroy-error-response400.dto.d.ts +15 -0
- package/model/dismissal-reasons-list-error-response400.dto.d.ts +16 -0
- package/model/dismissal-reasons-list-error.dto.d.ts +20 -0
- package/model/dismissal-reasons-list-id-error-component.dto.d.ts +27 -0
- package/model/dismissal-reasons-list-id-in-error-component.dto.d.ts +27 -0
- package/model/dismissal-reasons-list-name-error-component.dto.d.ts +26 -0
- package/model/dismissal-reasons-list-name-in-error-component.dto.d.ts +26 -0
- package/model/dismissal-reasons-list-type-error-component.dto.d.ts +26 -0
- package/model/dismissal-reasons-list-type-in-error-component.dto.d.ts +26 -0
- package/model/dismissal-reasons-list-validation-error.dto.d.ts +15 -0
- package/model/dismissal-reasons-retrieve-error-response400.dto.d.ts +15 -0
- package/model/dismissal-reasons-update-error-response400.dto.d.ts +16 -0
- package/model/dismissal-reasons-update-error.dto.d.ts +17 -0
- package/model/dismissal-reasons-update-name-error-component.dto.d.ts +33 -0
- package/model/dismissal-reasons-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/dismissal-reasons-update-type-error-component.dto.d.ts +28 -0
- package/model/dismissal-reasons-update-validation-error.dto.d.ts +15 -0
- package/model/error-code401-enum.dto.d.ts +16 -0
- package/model/error-code403-enum.dto.d.ts +15 -0
- package/model/error-code404-enum.dto.d.ts +15 -0
- package/model/error-code405-enum.dto.d.ts +15 -0
- package/model/error-code406-enum.dto.d.ts +15 -0
- package/model/error-code415-enum.dto.d.ts +15 -0
- package/model/error-code500-enum.dto.d.ts +15 -0
- package/model/error-response401.dto.d.ts +15 -0
- package/model/error-response403.dto.d.ts +15 -0
- package/model/error-response404.dto.d.ts +15 -0
- package/model/error-response405.dto.d.ts +15 -0
- package/model/error-response406.dto.d.ts +15 -0
- package/model/error-response415.dto.d.ts +15 -0
- package/model/error-response500.dto.d.ts +15 -0
- package/model/error401.dto.d.ts +15 -0
- package/model/error403.dto.d.ts +15 -0
- package/model/error404.dto.d.ts +15 -0
- package/model/error405.dto.d.ts +15 -0
- package/model/error406.dto.d.ts +15 -0
- package/model/error415.dto.d.ts +15 -0
- package/model/error500.dto.d.ts +15 -0
- package/model/group-enum.dto.d.ts +16 -0
- package/model/jira-client-create-project-create-error-response400.dto.d.ts +16 -0
- package/model/jira-client-create-project-create-error.dto.d.ts +18 -0
- package/model/jira-client-create-project-create-instance-error-component.dto.d.ts +29 -0
- package/model/jira-client-create-project-create-lead-email-error-component.dto.d.ts +31 -0
- package/model/jira-client-create-project-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/jira-client-create-project-create-project-name-error-component.dto.d.ts +31 -0
- package/model/jira-client-create-project-create-validation-error.dto.d.ts +15 -0
- package/model/jira-instance.dto.d.ts +16 -0
- package/model/jira-instances-list-error-response400.dto.d.ts +15 -0
- package/model/jira-instances-retrieve-error-response400.dto.d.ts +15 -0
- package/model/location-request.dto.d.ts +17 -0
- package/model/location.dto.d.ts +24 -0
- package/model/locations-create-error-response400.dto.d.ts +16 -0
- package/model/locations-create-error.dto.d.ts +18 -0
- package/model/locations-create-icon-error-component.dto.d.ts +30 -0
- package/model/locations-create-name-error-component.dto.d.ts +32 -0
- package/model/locations-create-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/locations-create-timezone-error-component.dto.d.ts +32 -0
- package/model/locations-create-validation-error.dto.d.ts +15 -0
- package/model/locations-destroy-error-response400.dto.d.ts +15 -0
- package/model/locations-list-error-response400.dto.d.ts +16 -0
- package/model/locations-list-error.dto.d.ts +20 -0
- package/model/locations-list-id-error-component.dto.d.ts +27 -0
- package/model/locations-list-id-in-error-component.dto.d.ts +27 -0
- package/model/locations-list-name-error-component.dto.d.ts +26 -0
- package/model/locations-list-name-in-error-component.dto.d.ts +26 -0
- package/model/locations-list-timezone-error-component.dto.d.ts +26 -0
- package/model/locations-list-timezone-in-error-component.dto.d.ts +26 -0
- package/model/locations-list-validation-error.dto.d.ts +15 -0
- package/model/locations-retrieve-error-response400.dto.d.ts +15 -0
- package/model/locations-update-error-response400.dto.d.ts +16 -0
- package/model/locations-update-error.dto.d.ts +18 -0
- package/model/locations-update-icon-error-component.dto.d.ts +30 -0
- package/model/locations-update-name-error-component.dto.d.ts +32 -0
- package/model/locations-update-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/locations-update-timezone-error-component.dto.d.ts +32 -0
- package/model/locations-update-validation-error.dto.d.ts +15 -0
- package/model/login-open-id-request.dto.d.ts +15 -0
- package/model/models.d.ts +584 -0
- package/model/open-id-code-exchange-request.dto.d.ts +16 -0
- package/model/open-id-redirect.dto.d.ts +15 -0
- package/model/ordering-enum.dto.d.ts +16 -0
- package/model/paginated-branch-list.dto.d.ts +16 -0
- package/model/paginated-branch-period-list.dto.d.ts +16 -0
- package/model/paginated-branch-user-stats-list.dto.d.ts +16 -0
- package/model/paginated-department-list.dto.d.ts +16 -0
- package/model/paginated-jira-instance-list.dto.d.ts +16 -0
- package/model/paginated-location-list.dto.d.ts +16 -0
- package/model/paginated-project-list.dto.d.ts +16 -0
- package/model/paginated-role-list.dto.d.ts +16 -0
- package/model/paginated-simple-dismissal-reason-list.dto.d.ts +16 -0
- package/model/paginated-simple-vendor-list.dto.d.ts +16 -0
- package/model/paginated-user-capacity-list.dto.d.ts +16 -0
- package/model/paginated-user-list.dto.d.ts +16 -0
- package/model/paginated-user-login-list.dto.d.ts +16 -0
- package/model/paginated-user-period-list.dto.d.ts +16 -0
- package/model/paginated-user-sum-capacity-list.dto.d.ts +16 -0
- package/model/paginated-user-timezone-list.dto.d.ts +16 -0
- package/model/paginated-work-type-list.dto.d.ts +16 -0
- package/model/parse-error-code-enum.dto.d.ts +15 -0
- package/model/parse-error-response.dto.d.ts +15 -0
- package/model/parse-error.dto.d.ts +15 -0
- package/model/period-model-enum.dto.d.ts +17 -0
- package/model/period-type-enum.dto.d.ts +23 -0
- package/model/period-user.dto.d.ts +37 -0
- package/model/period.dto.d.ts +33 -0
- package/model/permission-data-request.dto.d.ts +18 -0
- package/model/permission-data-retrieve-error-response400.dto.d.ts +15 -0
- package/model/permission-data.dto.d.ts +18 -0
- package/model/permission-enum.dto.d.ts +21 -0
- package/model/profile-request.dto.d.ts +28 -0
- package/model/profile-retrieve-error-response400.dto.d.ts +15 -0
- package/model/profile-update-avatar-error-component.dto.d.ts +30 -0
- package/model/profile-update-branch-error-component.dto.d.ts +29 -0
- package/model/profile-update-created-by-error-component.dto.d.ts +27 -0
- package/model/profile-update-department-error-component.dto.d.ts +29 -0
- package/model/profile-update-dismissal-reason-error-component.dto.d.ts +27 -0
- package/model/profile-update-error-response400.dto.d.ts +16 -0
- package/model/profile-update-error.dto.d.ts +29 -0
- package/model/profile-update-first-name-error-component.dto.d.ts +32 -0
- package/model/profile-update-last-name-error-component.dto.d.ts +32 -0
- package/model/profile-update-location-error-component.dto.d.ts +29 -0
- package/model/profile-update-middle-name-error-component.dto.d.ts +30 -0
- package/model/profile-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/profile-update-recruited-by-error-component.dto.d.ts +27 -0
- package/model/profile-update-role-error-component.dto.d.ts +27 -0
- package/model/profile-update-updated-by-error-component.dto.d.ts +27 -0
- package/model/profile-update-validation-error.dto.d.ts +15 -0
- package/model/profile-update-vendor-error-component.dto.d.ts +27 -0
- package/model/profile-update-work-type-error-component.dto.d.ts +29 -0
- package/model/profile.dto.d.ts +78 -0
- package/model/project.dto.d.ts +17 -0
- package/model/projects-list-error-response400.dto.d.ts +15 -0
- package/model/projects-retrieve-error-response400.dto.d.ts +15 -0
- package/model/role-edit-permission-request.dto.d.ts +18 -0
- package/model/role-edit-permission.dto.d.ts +23 -0
- package/model/role-request.dto.d.ts +17 -0
- package/model/role.dto.d.ts +20 -0
- package/model/roles-create-error-response400.dto.d.ts +16 -0
- package/model/roles-create-error.dto.d.ts +20 -0
- package/model/roles-create-name-error-component.dto.d.ts +33 -0
- package/model/roles-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/roles-create-permissions-index-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/roles-create-permissions-index-permission-error-component.dto.d.ts +28 -0
- package/model/roles-create-permissions-index-scope-error-component.dto.d.ts +28 -0
- package/model/roles-create-permissions-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/roles-create-validation-error.dto.d.ts +15 -0
- package/model/roles-destroy-error-response400.dto.d.ts +15 -0
- package/model/roles-list-error-response400.dto.d.ts +16 -0
- package/model/roles-list-error.dto.d.ts +18 -0
- package/model/roles-list-permissions-permission-error-component.dto.d.ts +26 -0
- package/model/roles-list-permissions-permission-in-error-component.dto.d.ts +26 -0
- package/model/roles-list-permissions-scope-error-component.dto.d.ts +26 -0
- package/model/roles-list-permissions-scope-in-error-component.dto.d.ts +26 -0
- package/model/roles-list-validation-error.dto.d.ts +15 -0
- package/model/roles-retrieve-error-response400.dto.d.ts +15 -0
- package/model/roles-update-error-response400.dto.d.ts +16 -0
- package/model/roles-update-error.dto.d.ts +20 -0
- package/model/roles-update-name-error-component.dto.d.ts +33 -0
- package/model/roles-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/roles-update-permissions-index-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/roles-update-permissions-index-permission-error-component.dto.d.ts +28 -0
- package/model/roles-update-permissions-index-scope-error-component.dto.d.ts +28 -0
- package/model/roles-update-permissions-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/roles-update-validation-error.dto.d.ts +15 -0
- package/model/s3-get-params-create-config-error-component.dto.d.ts +28 -0
- package/model/s3-get-params-create-content-length-error-component.dto.d.ts +29 -0
- package/model/s3-get-params-create-content-type-error-component.dto.d.ts +31 -0
- package/model/s3-get-params-create-error-response400.dto.d.ts +16 -0
- package/model/s3-get-params-create-error.dto.d.ts +19 -0
- package/model/s3-get-params-create-filename-error-component.dto.d.ts +31 -0
- package/model/s3-get-params-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/s3-get-params-create-validation-error.dto.d.ts +15 -0
- package/model/s3-params.dto.d.ts +26 -0
- package/model/s3-request-params-request.dto.d.ts +19 -0
- package/model/s3-upload.dto.d.ts +17 -0
- package/model/scope-enum.dto.d.ts +19 -0
- package/model/search-periods-list-branch-in-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-error-response400.dto.d.ts +16 -0
- package/model/search-periods-list-error.dto.d.ts +26 -0
- package/model/search-periods-list-period-gte-error-component.dto.d.ts +27 -0
- package/model/search-periods-list-period-lte-error-component.dto.d.ts +27 -0
- package/model/search-periods-list-status-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-type-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-branch-in-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-department-in-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-in-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-status-in-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-supervisees-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-supervisors-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-user-work-type-in-error-component.dto.d.ts +26 -0
- package/model/search-periods-list-validation-error.dto.d.ts +15 -0
- package/model/server-error-enum.dto.d.ts +15 -0
- package/model/simple-branch-request.dto.d.ts +15 -0
- package/model/simple-branch.dto.d.ts +18 -0
- package/model/simple-department-request.dto.d.ts +15 -0
- package/model/simple-department.dto.d.ts +18 -0
- package/model/simple-dismissal-reason-request.dto.d.ts +17 -0
- package/model/simple-dismissal-reason-type-enum.dto.d.ts +16 -0
- package/model/simple-dismissal-reason.dto.d.ts +20 -0
- package/model/simple-location-request.dto.d.ts +15 -0
- package/model/simple-location.dto.d.ts +18 -0
- package/model/simple-role-request.dto.d.ts +15 -0
- package/model/simple-role.dto.d.ts +18 -0
- package/model/simple-user-request.dto.d.ts +19 -0
- package/model/simple-user.dto.d.ts +22 -0
- package/model/simple-vendor-request.dto.d.ts +15 -0
- package/model/simple-vendor.dto.d.ts +18 -0
- package/model/simple-work-type-request.dto.d.ts +15 -0
- package/model/simple-work-type.dto.d.ts +18 -0
- package/model/sso-code-exchange-create-code-error-component.dto.d.ts +31 -0
- package/model/sso-code-exchange-create-error-response400.dto.d.ts +16 -0
- package/model/sso-code-exchange-create-error.dto.d.ts +17 -0
- package/model/sso-code-exchange-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/sso-code-exchange-create-redirect-uri-error-component.dto.d.ts +30 -0
- package/model/sso-code-exchange-create-validation-error.dto.d.ts +15 -0
- package/model/sso-debug-create-email-error-component.dto.d.ts +31 -0
- package/model/sso-debug-create-error-response400.dto.d.ts +16 -0
- package/model/sso-debug-create-error.dto.d.ts +16 -0
- package/model/sso-debug-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/sso-debug-create-validation-error.dto.d.ts +15 -0
- package/model/sso-start-create-error-response400.dto.d.ts +16 -0
- package/model/sso-start-create-error.dto.d.ts +16 -0
- package/model/sso-start-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/sso-start-create-redirect-uri-error-component.dto.d.ts +30 -0
- package/model/sso-start-create-validation-error.dto.d.ts +15 -0
- package/model/token-obtain-pair.dto.d.ts +13 -0
- package/model/token-refresh-create-error-response400.dto.d.ts +16 -0
- package/model/token-refresh-create-error.dto.d.ts +16 -0
- package/model/token-refresh-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/token-refresh-create-refresh-error-component.dto.d.ts +31 -0
- package/model/token-refresh-create-validation-error.dto.d.ts +15 -0
- package/model/token-refresh-request.dto.d.ts +12 -0
- package/model/token-refresh.dto.d.ts +13 -0
- package/model/token-verify-create-error-response400.dto.d.ts +16 -0
- package/model/token-verify-create-error.dto.d.ts +16 -0
- package/model/token-verify-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/token-verify-create-token-error-component.dto.d.ts +31 -0
- package/model/token-verify-create-validation-error.dto.d.ts +15 -0
- package/model/token-verify-request.dto.d.ts +12 -0
- package/model/user-capacities-calculate-capacity-create-billable-capacity-error-component.dto.d.ts +29 -0
- package/model/user-capacities-calculate-capacity-create-branch-error-component.dto.d.ts +29 -0
- package/model/user-capacities-calculate-capacity-create-date-error-component.dto.d.ts +29 -0
- package/model/user-capacities-calculate-capacity-create-department-error-component.dto.d.ts +29 -0
- package/model/user-capacities-calculate-capacity-create-error-response400.dto.d.ts +16 -0
- package/model/user-capacities-calculate-capacity-create-error.dto.d.ts +22 -0
- package/model/user-capacities-calculate-capacity-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-capacities-calculate-capacity-create-total-capacity-error-component.dto.d.ts +29 -0
- package/model/user-capacities-calculate-capacity-create-user-error-component.dto.d.ts +29 -0
- package/model/user-capacities-calculate-capacity-create-validation-error.dto.d.ts +15 -0
- package/model/user-capacities-calculate-capacity-create-work-type-error-component.dto.d.ts +29 -0
- package/model/user-capacities-get-period-capacity-list-date-gte-error-component.dto.d.ts +26 -0
- package/model/user-capacities-get-period-capacity-list-date-lte-error-component.dto.d.ts +26 -0
- package/model/user-capacities-get-period-capacity-list-error-response400.dto.d.ts +16 -0
- package/model/user-capacities-get-period-capacity-list-error.dto.d.ts +18 -0
- package/model/user-capacities-get-period-capacity-list-object-ids-error-component.dto.d.ts +27 -0
- package/model/user-capacities-get-period-capacity-list-period-type-error-component.dto.d.ts +27 -0
- package/model/user-capacities-get-period-capacity-list-validation-error.dto.d.ts +15 -0
- package/model/user-capacities-list-branch-id-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-branch-id-in-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-date-gte-error-component.dto.d.ts +26 -0
- package/model/user-capacities-list-date-lte-error-component.dto.d.ts +26 -0
- package/model/user-capacities-list-department-id-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-department-id-in-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-error-response400.dto.d.ts +16 -0
- package/model/user-capacities-list-error.dto.d.ts +26 -0
- package/model/user-capacities-list-id-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-id-in-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-user-id-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-user-id-in-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-validation-error.dto.d.ts +15 -0
- package/model/user-capacities-list-work-type-id-error-component.dto.d.ts +27 -0
- package/model/user-capacities-list-work-type-id-in-error-component.dto.d.ts +27 -0
- package/model/user-capacities-retrieve-error-response400.dto.d.ts +15 -0
- package/model/user-capacity-request.dto.d.ts +21 -0
- package/model/user-capacity.dto.d.ts +24 -0
- package/model/user-login-request.dto.d.ts +16 -0
- package/model/user-login.dto.d.ts +33 -0
- package/model/user-logins-list-branch-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-branch-in-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-department-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-department-in-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-error-response400.dto.d.ts +16 -0
- package/model/user-logins-list-error.dto.d.ts +22 -0
- package/model/user-logins-list-role-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-role-in-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-validation-error.dto.d.ts +15 -0
- package/model/user-logins-list-work-type-error-component.dto.d.ts +26 -0
- package/model/user-logins-list-work-type-in-error-component.dto.d.ts +26 -0
- package/model/user-logins-retrieve-error-response400.dto.d.ts +15 -0
- package/model/user-logins-update-email-error-component.dto.d.ts +33 -0
- package/model/user-logins-update-error-response400.dto.d.ts +16 -0
- package/model/user-logins-update-error.dto.d.ts +17 -0
- package/model/user-logins-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-logins-update-role-error-component.dto.d.ts +27 -0
- package/model/user-logins-update-validation-error.dto.d.ts +15 -0
- package/model/user-period-status-enum.dto.d.ts +17 -0
- package/model/user-period-type-enum.dto.d.ts +20 -0
- package/model/user-period.dto.d.ts +26 -0
- package/model/user-periods-list-error-response400.dto.d.ts +15 -0
- package/model/user-periods-retrieve-error-response400.dto.d.ts +15 -0
- package/model/user-request.dto.d.ts +53 -0
- package/model/user-status-enum.dto.d.ts +17 -0
- package/model/user-sum-capacity.dto.d.ts +17 -0
- package/model/user-timezone-request.dto.d.ts +16 -0
- package/model/user-timezone-setting-create-error-response400.dto.d.ts +16 -0
- package/model/user-timezone-setting-create-error.dto.d.ts +17 -0
- package/model/user-timezone-setting-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-timezone-setting-create-ordering-error-component.dto.d.ts +28 -0
- package/model/user-timezone-setting-create-use12-format-error-component.dto.d.ts +28 -0
- package/model/user-timezone-setting-create-validation-error.dto.d.ts +15 -0
- package/model/user-timezone-setting-request.dto.d.ts +17 -0
- package/model/user-timezone-setting-retrieve-error-response400.dto.d.ts +15 -0
- package/model/user-timezone-setting.dto.d.ts +21 -0
- package/model/user-timezone.dto.d.ts +20 -0
- package/model/user-timezones-list-error-response400.dto.d.ts +15 -0
- package/model/user-timezones-save-all-create-error-response400.dto.d.ts +16 -0
- package/model/user-timezones-save-all-create-error.dto.d.ts +18 -0
- package/model/user-timezones-save-all-create-index-name-error-component.dto.d.ts +32 -0
- package/model/user-timezones-save-all-create-index-non-field-errors-error-component.dto.d.ts +28 -0
- package/model/user-timezones-save-all-create-index-timezone-error-component.dto.d.ts +32 -0
- package/model/user-timezones-save-all-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/user-timezones-save-all-create-validation-error.dto.d.ts +15 -0
- package/model/user.dto.d.ts +78 -0
- package/model/users-create-avatar-error-component.dto.d.ts +30 -0
- package/model/users-create-birthday-error-component.dto.d.ts +27 -0
- package/model/users-create-branch-error-component.dto.d.ts +29 -0
- package/model/users-create-created-by-error-component.dto.d.ts +27 -0
- package/model/users-create-department-error-component.dto.d.ts +29 -0
- package/model/users-create-dismissal-reason-error-component.dto.d.ts +27 -0
- package/model/users-create-email-error-component.dto.d.ts +33 -0
- package/model/users-create-error-response400.dto.d.ts +16 -0
- package/model/users-create-error.dto.d.ts +50 -0
- package/model/users-create-first-name-error-component.dto.d.ts +32 -0
- package/model/users-create-first-working-day-by-contract-error-component.dto.d.ts +27 -0
- package/model/users-create-first-working-day-error-component.dto.d.ts +27 -0
- package/model/users-create-github-username-error-component.dto.d.ts +32 -0
- package/model/users-create-home-phone-error-component.dto.d.ts +32 -0
- package/model/users-create-is-intern-error-component.dto.d.ts +28 -0
- package/model/users-create-is-part-time-error-component.dto.d.ts +28 -0
- package/model/users-create-jira-account-id-error-component.dto.d.ts +31 -0
- package/model/users-create-last-name-error-component.dto.d.ts +32 -0
- package/model/users-create-last-working-day-error-component.dto.d.ts +27 -0
- package/model/users-create-location-error-component.dto.d.ts +29 -0
- package/model/users-create-middle-name-error-component.dto.d.ts +30 -0
- package/model/users-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/users-create-office-phone-error-component.dto.d.ts +32 -0
- package/model/users-create-onsite-error-component.dto.d.ts +28 -0
- package/model/users-create-personal-email-error-component.dto.d.ts +32 -0
- package/model/users-create-personal-phone-error-component.dto.d.ts +32 -0
- package/model/users-create-recruited-by-error-component.dto.d.ts +27 -0
- package/model/users-create-role-error-component.dto.d.ts +27 -0
- package/model/users-create-skype-error-component.dto.d.ts +32 -0
- package/model/users-create-slack-id-error-component.dto.d.ts +32 -0
- package/model/users-create-status-error-component.dto.d.ts +28 -0
- package/model/users-create-supervisees-error-component.dto.d.ts +30 -0
- package/model/users-create-supervisors-error-component.dto.d.ts +30 -0
- package/model/users-create-timezone-error-component.dto.d.ts +32 -0
- package/model/users-create-updated-by-error-component.dto.d.ts +27 -0
- package/model/users-create-utilization-percent-error-component.dto.d.ts +31 -0
- package/model/users-create-validation-error.dto.d.ts +15 -0
- package/model/users-create-vendor-error-component.dto.d.ts +27 -0
- package/model/users-create-work-type-error-component.dto.d.ts +29 -0
- package/model/users-list-branch-error-component.dto.d.ts +26 -0
- package/model/users-list-branch-in-error-component.dto.d.ts +26 -0
- package/model/users-list-department-error-component.dto.d.ts +26 -0
- package/model/users-list-department-in-error-component.dto.d.ts +26 -0
- package/model/users-list-error-response400.dto.d.ts +16 -0
- package/model/users-list-error.dto.d.ts +26 -0
- package/model/users-list-id-error-component.dto.d.ts +27 -0
- package/model/users-list-id-in-error-component.dto.d.ts +27 -0
- package/model/users-list-status-error-component.dto.d.ts +26 -0
- package/model/users-list-status-in-error-component.dto.d.ts +26 -0
- package/model/users-list-supervisees-id-in-error-component.dto.d.ts +27 -0
- package/model/users-list-supervisors-id-in-error-component.dto.d.ts +27 -0
- package/model/users-list-validation-error.dto.d.ts +15 -0
- package/model/users-list-work-type-error-component.dto.d.ts +26 -0
- package/model/users-list-work-type-in-error-component.dto.d.ts +26 -0
- package/model/users-retrieve-error-response400.dto.d.ts +15 -0
- package/model/users-update-avatar-error-component.dto.d.ts +30 -0
- package/model/users-update-birthday-error-component.dto.d.ts +27 -0
- package/model/users-update-branch-error-component.dto.d.ts +29 -0
- package/model/users-update-created-by-error-component.dto.d.ts +27 -0
- package/model/users-update-department-error-component.dto.d.ts +29 -0
- package/model/users-update-dismissal-reason-error-component.dto.d.ts +27 -0
- package/model/users-update-email-error-component.dto.d.ts +33 -0
- package/model/users-update-error-response400.dto.d.ts +16 -0
- package/model/users-update-error.dto.d.ts +50 -0
- package/model/users-update-first-name-error-component.dto.d.ts +32 -0
- package/model/users-update-first-working-day-by-contract-error-component.dto.d.ts +27 -0
- package/model/users-update-first-working-day-error-component.dto.d.ts +27 -0
- package/model/users-update-github-username-error-component.dto.d.ts +32 -0
- package/model/users-update-home-phone-error-component.dto.d.ts +32 -0
- package/model/users-update-is-intern-error-component.dto.d.ts +28 -0
- package/model/users-update-is-part-time-error-component.dto.d.ts +28 -0
- package/model/users-update-jira-account-id-error-component.dto.d.ts +31 -0
- package/model/users-update-last-name-error-component.dto.d.ts +32 -0
- package/model/users-update-last-working-day-error-component.dto.d.ts +27 -0
- package/model/users-update-location-error-component.dto.d.ts +29 -0
- package/model/users-update-middle-name-error-component.dto.d.ts +30 -0
- package/model/users-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/users-update-office-phone-error-component.dto.d.ts +32 -0
- package/model/users-update-onsite-error-component.dto.d.ts +28 -0
- package/model/users-update-personal-email-error-component.dto.d.ts +32 -0
- package/model/users-update-personal-phone-error-component.dto.d.ts +32 -0
- package/model/users-update-recruited-by-error-component.dto.d.ts +27 -0
- package/model/users-update-role-error-component.dto.d.ts +27 -0
- package/model/users-update-skype-error-component.dto.d.ts +32 -0
- package/model/users-update-slack-id-error-component.dto.d.ts +32 -0
- package/model/users-update-status-error-component.dto.d.ts +28 -0
- package/model/users-update-supervisees-error-component.dto.d.ts +30 -0
- package/model/users-update-supervisors-error-component.dto.d.ts +30 -0
- package/model/users-update-timezone-error-component.dto.d.ts +32 -0
- package/model/users-update-updated-by-error-component.dto.d.ts +27 -0
- package/model/users-update-utilization-percent-error-component.dto.d.ts +31 -0
- package/model/users-update-validation-error.dto.d.ts +15 -0
- package/model/users-update-vendor-error-component.dto.d.ts +27 -0
- package/model/users-update-work-type-error-component.dto.d.ts +29 -0
- package/model/validation-error-enum.dto.d.ts +15 -0
- package/model/vendors-create-error-response400.dto.d.ts +16 -0
- package/model/vendors-create-error.dto.d.ts +16 -0
- package/model/vendors-create-name-error-component.dto.d.ts +33 -0
- package/model/vendors-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/vendors-create-validation-error.dto.d.ts +15 -0
- package/model/vendors-destroy-error-response400.dto.d.ts +15 -0
- package/model/vendors-list-error-response400.dto.d.ts +16 -0
- package/model/vendors-list-error.dto.d.ts +16 -0
- package/model/vendors-list-id-error-component.dto.d.ts +27 -0
- package/model/vendors-list-id-in-error-component.dto.d.ts +27 -0
- package/model/vendors-list-validation-error.dto.d.ts +15 -0
- package/model/vendors-retrieve-error-response400.dto.d.ts +15 -0
- package/model/vendors-update-error-response400.dto.d.ts +16 -0
- package/model/vendors-update-error.dto.d.ts +16 -0
- package/model/vendors-update-name-error-component.dto.d.ts +33 -0
- package/model/vendors-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/vendors-update-validation-error.dto.d.ts +15 -0
- package/model/who-am-i-retrieve-error-response400.dto.d.ts +15 -0
- package/model/who-am-i.dto.d.ts +23 -0
- package/model/work-type-request.dto.d.ts +17 -0
- package/model/work-type.dto.d.ts +28 -0
- package/model/work-types-create-department-error-component.dto.d.ts +27 -0
- package/model/work-types-create-error-response400.dto.d.ts +16 -0
- package/model/work-types-create-error.dto.d.ts +18 -0
- package/model/work-types-create-name-error-component.dto.d.ts +33 -0
- package/model/work-types-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/work-types-create-parent-error-component.dto.d.ts +27 -0
- package/model/work-types-create-validation-error.dto.d.ts +15 -0
- package/model/work-types-destroy-error-response400.dto.d.ts +15 -0
- package/model/work-types-list-department-error-component.dto.d.ts +26 -0
- package/model/work-types-list-department-in-error-component.dto.d.ts +26 -0
- package/model/work-types-list-error-response400.dto.d.ts +16 -0
- package/model/work-types-list-error.dto.d.ts +20 -0
- package/model/work-types-list-id-error-component.dto.d.ts +27 -0
- package/model/work-types-list-id-in-error-component.dto.d.ts +27 -0
- package/model/work-types-list-parent-error-component.dto.d.ts +26 -0
- package/model/work-types-list-parent-in-error-component.dto.d.ts +26 -0
- package/model/work-types-list-validation-error.dto.d.ts +15 -0
- package/model/work-types-retrieve-error-response400.dto.d.ts +15 -0
- package/model/work-types-update-department-error-component.dto.d.ts +27 -0
- package/model/work-types-update-error-response400.dto.d.ts +16 -0
- package/model/work-types-update-error.dto.d.ts +18 -0
- package/model/work-types-update-name-error-component.dto.d.ts +33 -0
- package/model/work-types-update-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/work-types-update-parent-error-component.dto.d.ts +27 -0
- package/model/work-types-update-validation-error.dto.d.ts +15 -0
- package/package.json +36 -0
- package/param.d.ts +37 -0
- package/variables.d.ts +8 -0
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateGithubUsernameErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateGithubUsernameErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateGithubUsernameErrorComponentDtoAttrEnum["GithubUsername"] = "github_username";
|
|
13
|
+
})(UsersCreateGithubUsernameErrorComponentDtoAttrEnum || (UsersCreateGithubUsernameErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateGithubUsernameErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateGithubUsernameErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateGithubUsernameErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateGithubUsernameErrorComponentDtoCodeEnum || (UsersCreateGithubUsernameErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWdpdGh1Yi11c2VybmFtZS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLWdpdGh1Yi11c2VybmFtZS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksa0RBRVg7QUFGRCxXQUFZLGtEQUFrRDtJQUM1RCx3RkFBa0MsQ0FBQTtBQUNwQyxDQUFDLEVBRlcsa0RBQWtELEtBQWxELGtEQUFrRCxRQUU3RDtBQUNELE1BQU0sQ0FBTixJQUFZLGtEQVFYO0FBUkQsV0FBWSxrREFBa0Q7SUFDNUQscUVBQWUsQ0FBQTtJQUNmLHlFQUFtQixDQUFBO0lBQ25CLDhFQUF3QixDQUFBO0lBQ3hCLG1FQUFhLENBQUE7SUFDYiw4R0FBd0QsQ0FBQTtJQUN4RCwyRUFBcUIsQ0FBQTtJQUNyQix3SEFBa0UsQ0FBQTtBQUNwRSxDQUFDLEVBUlcsa0RBQWtELEtBQWxELGtEQUFrRCxRQVE3RCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVHaXRodWJVc2VybmFtZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYGdpdGh1Yl91c2VybmFtZWAgLSBnaXRodWJfdXNlcm5hbWVcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlR2l0aHViVXNlcm5hbWVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVHaXRodWJVc2VybmFtZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVHaXRodWJVc2VybmFtZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBHaXRodWJVc2VybmFtZSA9IFwiZ2l0aHViX3VzZXJuYW1lXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZUdpdGh1YlVzZXJuYW1lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEJsYW5rID0gXCJibGFua1wiLFxuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIE1heExlbmd0aCA9IFwibWF4X2xlbmd0aFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIE51bGxDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwibnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxuICBTdXJyb2dhdGVDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwic3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateHomePhoneErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateHomePhoneErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateHomePhoneErrorComponentDtoAttrEnum["HomePhone"] = "home_phone";
|
|
13
|
+
})(UsersCreateHomePhoneErrorComponentDtoAttrEnum || (UsersCreateHomePhoneErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateHomePhoneErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateHomePhoneErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateHomePhoneErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateHomePhoneErrorComponentDtoCodeEnum || (UsersCreateHomePhoneErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWhvbWUtcGhvbmUtZXJyb3ItY29tcG9uZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3VzZXJzLWNyZWF0ZS1ob21lLXBob25lLWVycm9yLWNvbXBvbmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0dBUUc7QUFhSCxNQUFNLENBQU4sSUFBWSw2Q0FFWDtBQUZELFdBQVksNkNBQTZDO0lBQ3ZELHlFQUF3QixDQUFBO0FBQzFCLENBQUMsRUFGVyw2Q0FBNkMsS0FBN0MsNkNBQTZDLFFBRXhEO0FBQ0QsTUFBTSxDQUFOLElBQVksNkNBUVg7QUFSRCxXQUFZLDZDQUE2QztJQUN2RCxnRUFBZSxDQUFBO0lBQ2Ysb0VBQW1CLENBQUE7SUFDbkIseUVBQXdCLENBQUE7SUFDeEIsOERBQWEsQ0FBQTtJQUNiLHlHQUF3RCxDQUFBO0lBQ3hELHNFQUFxQixDQUFBO0lBQ3JCLG1IQUFrRSxDQUFBO0FBQ3BFLENBQUMsRUFSVyw2Q0FBNkMsS0FBN0MsNkNBQTZDLFFBUXhEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2Vyc0NyZWF0ZUhvbWVQaG9uZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYGhvbWVfcGhvbmVgIC0gaG9tZV9waG9uZVxuICAgKi9cbiAgYXR0cjogVXNlcnNDcmVhdGVIb21lUGhvbmVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVIb21lUGhvbmVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlSG9tZVBob25lRXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIEhvbWVQaG9uZSA9IFwiaG9tZV9waG9uZVwiLFxufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVIb21lUGhvbmVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgQmxhbmsgPSBcImJsYW5rXCIsXG4gIEludmFsaWQgPSBcImludmFsaWRcIixcbiAgTWF4TGVuZ3RoID0gXCJtYXhfbGVuZ3RoXCIsXG4gIE51bGwgPSBcIm51bGxcIixcbiAgTnVsbENoYXJhY3RlcnNOb3RBbGxvd2VkID0gXCJudWxsX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbiAgUmVxdWlyZWQgPSBcInJlcXVpcmVkXCIsXG4gIFN1cnJvZ2F0ZUNoYXJhY3RlcnNOb3RBbGxvd2VkID0gXCJzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFwiLFxufVxuIl19
|
|
@@ -0,0 +1,20 @@
|
|
|
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 var UsersCreateIsInternErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateIsInternErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateIsInternErrorComponentDtoAttrEnum["IsIntern"] = "is_intern";
|
|
13
|
+
})(UsersCreateIsInternErrorComponentDtoAttrEnum || (UsersCreateIsInternErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateIsInternErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateIsInternErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateIsInternErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
17
|
+
UsersCreateIsInternErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18
|
+
UsersCreateIsInternErrorComponentDtoCodeEnum["Required"] = "required";
|
|
19
|
+
})(UsersCreateIsInternErrorComponentDtoCodeEnum || (UsersCreateIsInternErrorComponentDtoCodeEnum = {}));
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWlzLWludGVybi1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLWlzLWludGVybi1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksNENBRVg7QUFGRCxXQUFZLDRDQUE0QztJQUN0RCxzRUFBc0IsQ0FBQTtBQUN4QixDQUFDLEVBRlcsNENBQTRDLEtBQTVDLDRDQUE0QyxRQUV2RDtBQUNELE1BQU0sQ0FBTixJQUFZLDRDQUlYO0FBSkQsV0FBWSw0Q0FBNEM7SUFDdEQsbUVBQW1CLENBQUE7SUFDbkIsNkRBQWEsQ0FBQTtJQUNiLHFFQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFKVyw0Q0FBNEMsS0FBNUMsNENBQTRDLFFBSXZEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2Vyc0NyZWF0ZUlzSW50ZXJuRXJyb3JDb21wb25lbnREdG8ge1xuICAvKipcbiAgICogKiBgaXNfaW50ZXJuYCAtIGlzX2ludGVyblxuICAgKi9cbiAgYXR0cjogVXNlcnNDcmVhdGVJc0ludGVybkVycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBpbnZhbGlkYCAtIGludmFsaWQgKiBgbnVsbGAgLSBudWxsICogYHJlcXVpcmVkYCAtIHJlcXVpcmVkXG4gICAqL1xuICBjb2RlOiBVc2Vyc0NyZWF0ZUlzSW50ZXJuRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZUlzSW50ZXJuRXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIElzSW50ZXJuID0gXCJpc19pbnRlcm5cIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlSXNJbnRlcm5FcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
|
|
@@ -0,0 +1,20 @@
|
|
|
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 var UsersCreateIsPartTimeErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateIsPartTimeErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateIsPartTimeErrorComponentDtoAttrEnum["IsPartTime"] = "is_part_time";
|
|
13
|
+
})(UsersCreateIsPartTimeErrorComponentDtoAttrEnum || (UsersCreateIsPartTimeErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateIsPartTimeErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateIsPartTimeErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateIsPartTimeErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
17
|
+
UsersCreateIsPartTimeErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18
|
+
UsersCreateIsPartTimeErrorComponentDtoCodeEnum["Required"] = "required";
|
|
19
|
+
})(UsersCreateIsPartTimeErrorComponentDtoCodeEnum || (UsersCreateIsPartTimeErrorComponentDtoCodeEnum = {}));
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWlzLXBhcnQtdGltZS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLWlzLXBhcnQtdGltZS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksOENBRVg7QUFGRCxXQUFZLDhDQUE4QztJQUN4RCw2RUFBMkIsQ0FBQTtBQUM3QixDQUFDLEVBRlcsOENBQThDLEtBQTlDLDhDQUE4QyxRQUV6RDtBQUNELE1BQU0sQ0FBTixJQUFZLDhDQUlYO0FBSkQsV0FBWSw4Q0FBOEM7SUFDeEQscUVBQW1CLENBQUE7SUFDbkIsK0RBQWEsQ0FBQTtJQUNiLHVFQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFKVyw4Q0FBOEMsS0FBOUMsOENBQThDLFFBSXpEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2Vyc0NyZWF0ZUlzUGFydFRpbWVFcnJvckNvbXBvbmVudER0byB7XG4gIC8qKlxuICAgKiAqIGBpc19wYXJ0X3RpbWVgIC0gaXNfcGFydF90aW1lXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZUlzUGFydFRpbWVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG51bGxgIC0gbnVsbCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVJc1BhcnRUaW1lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZUlzUGFydFRpbWVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgSXNQYXJ0VGltZSA9IFwiaXNfcGFydF90aW1lXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZUlzUGFydFRpbWVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
|
|
@@ -0,0 +1,23 @@
|
|
|
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 var UsersCreateJiraAccountIdErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateJiraAccountIdErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateJiraAccountIdErrorComponentDtoAttrEnum["JiraAccountId"] = "jira_account_id";
|
|
13
|
+
})(UsersCreateJiraAccountIdErrorComponentDtoAttrEnum || (UsersCreateJiraAccountIdErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateJiraAccountIdErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateJiraAccountIdErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateJiraAccountIdErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateJiraAccountIdErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateJiraAccountIdErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateJiraAccountIdErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
20
|
+
UsersCreateJiraAccountIdErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
21
|
+
UsersCreateJiraAccountIdErrorComponentDtoCodeEnum["Unique"] = "unique";
|
|
22
|
+
})(UsersCreateJiraAccountIdErrorComponentDtoCodeEnum || (UsersCreateJiraAccountIdErrorComponentDtoCodeEnum = {}));
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWppcmEtYWNjb3VudC1pZC1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLWppcmEtYWNjb3VudC1pZC1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksaURBRVg7QUFGRCxXQUFZLGlEQUFpRDtJQUMzRCxzRkFBaUMsQ0FBQTtBQUNuQyxDQUFDLEVBRlcsaURBQWlELEtBQWpELGlEQUFpRCxRQUU1RDtBQUNELE1BQU0sQ0FBTixJQUFZLGlEQU9YO0FBUEQsV0FBWSxpREFBaUQ7SUFDM0Qsb0VBQWUsQ0FBQTtJQUNmLHdFQUFtQixDQUFBO0lBQ25CLDZFQUF3QixDQUFBO0lBQ3hCLDZHQUF3RCxDQUFBO0lBQ3hELHVIQUFrRSxDQUFBO0lBQ2xFLHNFQUFpQixDQUFBO0FBQ25CLENBQUMsRUFQVyxpREFBaUQsS0FBakQsaURBQWlELFFBTzVEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2Vyc0NyZWF0ZUppcmFBY2NvdW50SWRFcnJvckNvbXBvbmVudER0byB7XG4gIC8qKlxuICAgKiAqIGBqaXJhX2FjY291bnRfaWRgIC0gamlyYV9hY2NvdW50X2lkXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZUppcmFBY2NvdW50SWRFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRgIC0gbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkICogYHN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIHN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkICogYHVuaXF1ZWAgLSB1bmlxdWVcbiAgICovXG4gIGNvZGU6IFVzZXJzQ3JlYXRlSmlyYUFjY291bnRJZEVycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVKaXJhQWNjb3VudElkRXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIEppcmFBY2NvdW50SWQgPSBcImppcmFfYWNjb3VudF9pZFwiLFxufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVKaXJhQWNjb3VudElkRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEJsYW5rID0gXCJibGFua1wiLFxuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIE1heExlbmd0aCA9IFwibWF4X2xlbmd0aFwiLFxuICBOdWxsQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcIm51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFwiLFxuICBTdXJyb2dhdGVDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwic3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbiAgVW5pcXVlID0gXCJ1bmlxdWVcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateLastNameErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateLastNameErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateLastNameErrorComponentDtoAttrEnum["LastName"] = "last_name";
|
|
13
|
+
})(UsersCreateLastNameErrorComponentDtoAttrEnum || (UsersCreateLastNameErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateLastNameErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateLastNameErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateLastNameErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateLastNameErrorComponentDtoCodeEnum || (UsersCreateLastNameErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWxhc3QtbmFtZS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLWxhc3QtbmFtZS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksNENBRVg7QUFGRCxXQUFZLDRDQUE0QztJQUN0RCxzRUFBc0IsQ0FBQTtBQUN4QixDQUFDLEVBRlcsNENBQTRDLEtBQTVDLDRDQUE0QyxRQUV2RDtBQUNELE1BQU0sQ0FBTixJQUFZLDRDQVFYO0FBUkQsV0FBWSw0Q0FBNEM7SUFDdEQsK0RBQWUsQ0FBQTtJQUNmLG1FQUFtQixDQUFBO0lBQ25CLHdFQUF3QixDQUFBO0lBQ3hCLDZEQUFhLENBQUE7SUFDYix3R0FBd0QsQ0FBQTtJQUN4RCxxRUFBcUIsQ0FBQTtJQUNyQixrSEFBa0UsQ0FBQTtBQUNwRSxDQUFDLEVBUlcsNENBQTRDLEtBQTVDLDRDQUE0QyxRQVF2RCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVMYXN0TmFtZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYGxhc3RfbmFtZWAgLSBsYXN0X25hbWVcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlTGFzdE5hbWVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVMYXN0TmFtZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVMYXN0TmFtZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBMYXN0TmFtZSA9IFwibGFzdF9uYW1lXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZUxhc3ROYW1lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEJsYW5rID0gXCJibGFua1wiLFxuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIE1heExlbmd0aCA9IFwibWF4X2xlbmd0aFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIE51bGxDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwibnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxuICBTdXJyb2dhdGVDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwic3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
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 var UsersCreateLastWorkingDayErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateLastWorkingDayErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateLastWorkingDayErrorComponentDtoAttrEnum["LastWorkingDay"] = "last_working_day";
|
|
13
|
+
})(UsersCreateLastWorkingDayErrorComponentDtoAttrEnum || (UsersCreateLastWorkingDayErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateLastWorkingDayErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateLastWorkingDayErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateLastWorkingDayErrorComponentDtoCodeEnum["Datetime"] = "datetime";
|
|
17
|
+
UsersCreateLastWorkingDayErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
})(UsersCreateLastWorkingDayErrorComponentDtoCodeEnum || (UsersCreateLastWorkingDayErrorComponentDtoCodeEnum = {}));
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWxhc3Qtd29ya2luZy1kYXktZXJyb3ItY29tcG9uZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3VzZXJzLWNyZWF0ZS1sYXN0LXdvcmtpbmctZGF5LWVycm9yLWNvbXBvbmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0dBUUc7QUFhSCxNQUFNLENBQU4sSUFBWSxrREFFWDtBQUZELFdBQVksa0RBQWtEO0lBQzVELHlGQUFtQyxDQUFBO0FBQ3JDLENBQUMsRUFGVyxrREFBa0QsS0FBbEQsa0RBQWtELFFBRTdEO0FBQ0QsTUFBTSxDQUFOLElBQVksa0RBR1g7QUFIRCxXQUFZLGtEQUFrRDtJQUM1RCwyRUFBcUIsQ0FBQTtJQUNyQix5RUFBbUIsQ0FBQTtBQUNyQixDQUFDLEVBSFcsa0RBQWtELEtBQWxELGtEQUFrRCxRQUc3RCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVMYXN0V29ya2luZ0RheUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYGxhc3Rfd29ya2luZ19kYXlgIC0gbGFzdF93b3JraW5nX2RheVxuICAgKi9cbiAgYXR0cjogVXNlcnNDcmVhdGVMYXN0V29ya2luZ0RheUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBkYXRldGltZWAgLSBkYXRldGltZSAqIGBpbnZhbGlkYCAtIGludmFsaWRcbiAgICovXG4gIGNvZGU6IFVzZXJzQ3JlYXRlTGFzdFdvcmtpbmdEYXlFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlTGFzdFdvcmtpbmdEYXlFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgTGFzdFdvcmtpbmdEYXkgPSBcImxhc3Rfd29ya2luZ19kYXlcIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlTGFzdFdvcmtpbmdEYXlFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgRGF0ZXRpbWUgPSBcImRhdGV0aW1lXCIsXG4gIEludmFsaWQgPSBcImludmFsaWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,21 @@
|
|
|
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 var UsersCreateLocationErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateLocationErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateLocationErrorComponentDtoAttrEnum["Location"] = "location";
|
|
13
|
+
})(UsersCreateLocationErrorComponentDtoAttrEnum || (UsersCreateLocationErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateLocationErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateLocationErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateLocationErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
+
UsersCreateLocationErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
+
UsersCreateLocationErrorComponentDtoCodeEnum["Null"] = "null";
|
|
19
|
+
UsersCreateLocationErrorComponentDtoCodeEnum["Required"] = "required";
|
|
20
|
+
})(UsersCreateLocationErrorComponentDtoCodeEnum || (UsersCreateLocationErrorComponentDtoCodeEnum = {}));
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLWxvY2F0aW9uLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtbG9jYXRpb24tZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLDRDQUVYO0FBRkQsV0FBWSw0Q0FBNEM7SUFDdEQscUVBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQUZXLDRDQUE0QyxLQUE1Qyw0Q0FBNEMsUUFFdkQ7QUFDRCxNQUFNLENBQU4sSUFBWSw0Q0FLWDtBQUxELFdBQVksNENBQTRDO0lBQ3RELCtFQUErQixDQUFBO0lBQy9CLGdGQUFnQyxDQUFBO0lBQ2hDLDZEQUFhLENBQUE7SUFDYixxRUFBcUIsQ0FBQTtBQUN2QixDQUFDLEVBTFcsNENBQTRDLEtBQTVDLDRDQUE0QyxRQUt2RCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVMb2NhdGlvbkVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYGxvY2F0aW9uYCAtIGxvY2F0aW9uXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZUxvY2F0aW9uRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGRvZXNfbm90X2V4aXN0YCAtIGRvZXNfbm90X2V4aXN0ICogYGluY29ycmVjdF90eXBlYCAtIGluY29ycmVjdF90eXBlICogYG51bGxgIC0gbnVsbCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVMb2NhdGlvbkVycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVMb2NhdGlvbkVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBMb2NhdGlvbiA9IFwibG9jYXRpb25cIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlTG9jYXRpb25FcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgRG9lc05vdEV4aXN0ID0gXCJkb2VzX25vdF9leGlzdFwiLFxuICBJbmNvcnJlY3RUeXBlID0gXCJpbmNvcnJlY3RfdHlwZVwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
|
|
@@ -0,0 +1,22 @@
|
|
|
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 var UsersCreateMiddleNameErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateMiddleNameErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateMiddleNameErrorComponentDtoAttrEnum["MiddleName"] = "middle_name";
|
|
13
|
+
})(UsersCreateMiddleNameErrorComponentDtoAttrEnum || (UsersCreateMiddleNameErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateMiddleNameErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateMiddleNameErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateMiddleNameErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
17
|
+
UsersCreateMiddleNameErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
18
|
+
UsersCreateMiddleNameErrorComponentDtoCodeEnum["Null"] = "null";
|
|
19
|
+
UsersCreateMiddleNameErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
20
|
+
UsersCreateMiddleNameErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
21
|
+
})(UsersCreateMiddleNameErrorComponentDtoCodeEnum || (UsersCreateMiddleNameErrorComponentDtoCodeEnum = {}));
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLW1pZGRsZS1uYW1lLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtbWlkZGxlLW5hbWUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLDhDQUVYO0FBRkQsV0FBWSw4Q0FBOEM7SUFDeEQsNEVBQTBCLENBQUE7QUFDNUIsQ0FBQyxFQUZXLDhDQUE4QyxLQUE5Qyw4Q0FBOEMsUUFFekQ7QUFDRCxNQUFNLENBQU4sSUFBWSw4Q0FNWDtBQU5ELFdBQVksOENBQThDO0lBQ3hELHFFQUFtQixDQUFBO0lBQ25CLDBFQUF3QixDQUFBO0lBQ3hCLCtEQUFhLENBQUE7SUFDYiwwR0FBd0QsQ0FBQTtJQUN4RCxvSEFBa0UsQ0FBQTtBQUNwRSxDQUFDLEVBTlcsOENBQThDLEtBQTlDLDhDQUE4QyxRQU16RCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVNaWRkbGVOYW1lRXJyb3JDb21wb25lbnREdG8ge1xuICAvKipcbiAgICogKiBgbWlkZGxlX25hbWVgIC0gbWlkZGxlX25hbWVcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlTWlkZGxlTmFtZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBpbnZhbGlkYCAtIGludmFsaWQgKiBgbWF4X2xlbmd0aGAgLSBtYXhfbGVuZ3RoICogYG51bGxgIC0gbnVsbCAqIGBudWxsX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRgIC0gbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkICogYHN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIHN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXG4gICAqL1xuICBjb2RlOiBVc2Vyc0NyZWF0ZU1pZGRsZU5hbWVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlTWlkZGxlTmFtZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBNaWRkbGVOYW1lID0gXCJtaWRkbGVfbmFtZVwiLFxufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVNaWRkbGVOYW1lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEludmFsaWQgPSBcImludmFsaWRcIixcbiAgTWF4TGVuZ3RoID0gXCJtYXhfbGVuZ3RoXCIsXG4gIE51bGwgPSBcIm51bGxcIixcbiAgTnVsbENoYXJhY3RlcnNOb3RBbGxvd2VkID0gXCJudWxsX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbiAgU3Vycm9nYXRlQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcInN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG59XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
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 var UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum["NonFieldErrors"] = "non_field_errors";
|
|
13
|
+
})(UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum || (UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
17
|
+
UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18
|
+
})(UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum || (UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum = {}));
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLW5vbi1maWVsZC1lcnJvcnMtZXJyb3ItY29tcG9uZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3VzZXJzLWNyZWF0ZS1ub24tZmllbGQtZXJyb3JzLWVycm9yLWNvbXBvbmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0dBUUc7QUFhSCxNQUFNLENBQU4sSUFBWSxrREFFWDtBQUZELFdBQVksa0RBQWtEO0lBQzVELHlGQUFtQyxDQUFBO0FBQ3JDLENBQUMsRUFGVyxrREFBa0QsS0FBbEQsa0RBQWtELFFBRTdEO0FBQ0QsTUFBTSxDQUFOLElBQVksa0RBR1g7QUFIRCxXQUFZLGtEQUFrRDtJQUM1RCx5RUFBbUIsQ0FBQTtJQUNuQixtRUFBYSxDQUFBO0FBQ2YsQ0FBQyxFQUhXLGtEQUFrRCxLQUFsRCxrREFBa0QsUUFHN0QiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlTm9uRmllbGRFcnJvcnNFcnJvckNvbXBvbmVudER0byB7XG4gIC8qKlxuICAgKiAqIGBub25fZmllbGRfZXJyb3JzYCAtIG5vbl9maWVsZF9lcnJvcnNcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlTm9uRmllbGRFcnJvcnNFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG51bGxgIC0gbnVsbFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVOb25GaWVsZEVycm9yc0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVOb25GaWVsZEVycm9yc0Vycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBOb25GaWVsZEVycm9ycyA9IFwibm9uX2ZpZWxkX2Vycm9yc1wiLFxufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVOb25GaWVsZEVycm9yc0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIE51bGwgPSBcIm51bGxcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateOfficePhoneErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateOfficePhoneErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateOfficePhoneErrorComponentDtoAttrEnum["OfficePhone"] = "office_phone";
|
|
13
|
+
})(UsersCreateOfficePhoneErrorComponentDtoAttrEnum || (UsersCreateOfficePhoneErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateOfficePhoneErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateOfficePhoneErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateOfficePhoneErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateOfficePhoneErrorComponentDtoCodeEnum || (UsersCreateOfficePhoneErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLW9mZmljZS1waG9uZS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLW9mZmljZS1waG9uZS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksK0NBRVg7QUFGRCxXQUFZLCtDQUErQztJQUN6RCwrRUFBNEIsQ0FBQTtBQUM5QixDQUFDLEVBRlcsK0NBQStDLEtBQS9DLCtDQUErQyxRQUUxRDtBQUNELE1BQU0sQ0FBTixJQUFZLCtDQVFYO0FBUkQsV0FBWSwrQ0FBK0M7SUFDekQsa0VBQWUsQ0FBQTtJQUNmLHNFQUFtQixDQUFBO0lBQ25CLDJFQUF3QixDQUFBO0lBQ3hCLGdFQUFhLENBQUE7SUFDYiwyR0FBd0QsQ0FBQTtJQUN4RCx3RUFBcUIsQ0FBQTtJQUNyQixxSEFBa0UsQ0FBQTtBQUNwRSxDQUFDLEVBUlcsK0NBQStDLEtBQS9DLCtDQUErQyxRQVExRCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVPZmZpY2VQaG9uZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYG9mZmljZV9waG9uZWAgLSBvZmZpY2VfcGhvbmVcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlT2ZmaWNlUGhvbmVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVPZmZpY2VQaG9uZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW07XG4gIGRldGFpbDogc3RyaW5nO1xufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVPZmZpY2VQaG9uZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBPZmZpY2VQaG9uZSA9IFwib2ZmaWNlX3Bob25lXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZU9mZmljZVBob25lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEJsYW5rID0gXCJibGFua1wiLFxuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIE1heExlbmd0aCA9IFwibWF4X2xlbmd0aFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIE51bGxDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwibnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxuICBTdXJyb2dhdGVDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwic3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,20 @@
|
|
|
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 var UsersCreateOnsiteErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateOnsiteErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateOnsiteErrorComponentDtoAttrEnum["Onsite"] = "onsite";
|
|
13
|
+
})(UsersCreateOnsiteErrorComponentDtoAttrEnum || (UsersCreateOnsiteErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateOnsiteErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateOnsiteErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateOnsiteErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
17
|
+
UsersCreateOnsiteErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18
|
+
UsersCreateOnsiteErrorComponentDtoCodeEnum["Required"] = "required";
|
|
19
|
+
})(UsersCreateOnsiteErrorComponentDtoCodeEnum || (UsersCreateOnsiteErrorComponentDtoCodeEnum = {}));
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLW9uc2l0ZS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLW9uc2l0ZS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksMENBRVg7QUFGRCxXQUFZLDBDQUEwQztJQUNwRCwrREFBaUIsQ0FBQTtBQUNuQixDQUFDLEVBRlcsMENBQTBDLEtBQTFDLDBDQUEwQyxRQUVyRDtBQUNELE1BQU0sQ0FBTixJQUFZLDBDQUlYO0FBSkQsV0FBWSwwQ0FBMEM7SUFDcEQsaUVBQW1CLENBQUE7SUFDbkIsMkRBQWEsQ0FBQTtJQUNiLG1FQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFKVywwQ0FBMEMsS0FBMUMsMENBQTBDLFFBSXJEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2Vyc0NyZWF0ZU9uc2l0ZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYG9uc2l0ZWAgLSBvbnNpdGVcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlT25zaXRlRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGludmFsaWRgIC0gaW52YWxpZCAqIGBudWxsYCAtIG51bGwgKiBgcmVxdWlyZWRgIC0gcmVxdWlyZWRcbiAgICovXG4gIGNvZGU6IFVzZXJzQ3JlYXRlT25zaXRlRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZU9uc2l0ZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBPbnNpdGUgPSBcIm9uc2l0ZVwiLFxufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVPbnNpdGVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreatePersonalEmailErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreatePersonalEmailErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreatePersonalEmailErrorComponentDtoAttrEnum["PersonalEmail"] = "personal_email";
|
|
13
|
+
})(UsersCreatePersonalEmailErrorComponentDtoAttrEnum || (UsersCreatePersonalEmailErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreatePersonalEmailErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreatePersonalEmailErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreatePersonalEmailErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreatePersonalEmailErrorComponentDtoCodeEnum || (UsersCreatePersonalEmailErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXBlcnNvbmFsLWVtYWlsLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtcGVyc29uYWwtZW1haWwtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLGlEQUVYO0FBRkQsV0FBWSxpREFBaUQ7SUFDM0QscUZBQWdDLENBQUE7QUFDbEMsQ0FBQyxFQUZXLGlEQUFpRCxLQUFqRCxpREFBaUQsUUFFNUQ7QUFDRCxNQUFNLENBQU4sSUFBWSxpREFRWDtBQVJELFdBQVksaURBQWlEO0lBQzNELG9FQUFlLENBQUE7SUFDZix3RUFBbUIsQ0FBQTtJQUNuQiw2RUFBd0IsQ0FBQTtJQUN4QixrRUFBYSxDQUFBO0lBQ2IsNkdBQXdELENBQUE7SUFDeEQsMEVBQXFCLENBQUE7SUFDckIsdUhBQWtFLENBQUE7QUFDcEUsQ0FBQyxFQVJXLGlEQUFpRCxLQUFqRCxpREFBaUQsUUFRNUQiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlUGVyc29uYWxFbWFpbEVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHBlcnNvbmFsX2VtYWlsYCAtIHBlcnNvbmFsX2VtYWlsXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVBlcnNvbmFsRW1haWxFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVQZXJzb25hbEVtYWlsRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVBlcnNvbmFsRW1haWxFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgUGVyc29uYWxFbWFpbCA9IFwicGVyc29uYWxfZW1haWxcIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlUGVyc29uYWxFbWFpbEVycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBCbGFuayA9IFwiYmxhbmtcIixcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBNYXhMZW5ndGggPSBcIm1heF9sZW5ndGhcIixcbiAgTnVsbCA9IFwibnVsbFwiLFxuICBOdWxsQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcIm51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFwiLFxuICBSZXF1aXJlZCA9IFwicmVxdWlyZWRcIixcbiAgU3Vycm9nYXRlQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcInN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG59XG4iXX0=
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreatePersonalPhoneErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreatePersonalPhoneErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreatePersonalPhoneErrorComponentDtoAttrEnum["PersonalPhone"] = "personal_phone";
|
|
13
|
+
})(UsersCreatePersonalPhoneErrorComponentDtoAttrEnum || (UsersCreatePersonalPhoneErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreatePersonalPhoneErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreatePersonalPhoneErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreatePersonalPhoneErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreatePersonalPhoneErrorComponentDtoCodeEnum || (UsersCreatePersonalPhoneErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXBlcnNvbmFsLXBob25lLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtcGVyc29uYWwtcGhvbmUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLGlEQUVYO0FBRkQsV0FBWSxpREFBaUQ7SUFDM0QscUZBQWdDLENBQUE7QUFDbEMsQ0FBQyxFQUZXLGlEQUFpRCxLQUFqRCxpREFBaUQsUUFFNUQ7QUFDRCxNQUFNLENBQU4sSUFBWSxpREFRWDtBQVJELFdBQVksaURBQWlEO0lBQzNELG9FQUFlLENBQUE7SUFDZix3RUFBbUIsQ0FBQTtJQUNuQiw2RUFBd0IsQ0FBQTtJQUN4QixrRUFBYSxDQUFBO0lBQ2IsNkdBQXdELENBQUE7SUFDeEQsMEVBQXFCLENBQUE7SUFDckIsdUhBQWtFLENBQUE7QUFDcEUsQ0FBQyxFQVJXLGlEQUFpRCxLQUFqRCxpREFBaUQsUUFRNUQiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlUGVyc29uYWxQaG9uZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHBlcnNvbmFsX3Bob25lYCAtIHBlcnNvbmFsX3Bob25lXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVBlcnNvbmFsUGhvbmVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVQZXJzb25hbFBob25lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVBlcnNvbmFsUGhvbmVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgUGVyc29uYWxQaG9uZSA9IFwicGVyc29uYWxfcGhvbmVcIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlUGVyc29uYWxQaG9uZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBCbGFuayA9IFwiYmxhbmtcIixcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBNYXhMZW5ndGggPSBcIm1heF9sZW5ndGhcIixcbiAgTnVsbCA9IFwibnVsbFwiLFxuICBOdWxsQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcIm51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFwiLFxuICBSZXF1aXJlZCA9IFwicmVxdWlyZWRcIixcbiAgU3Vycm9nYXRlQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcInN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG59XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
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 var UsersCreateRecruitedByErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateRecruitedByErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateRecruitedByErrorComponentDtoAttrEnum["RecruitedBy"] = "recruited_by";
|
|
13
|
+
})(UsersCreateRecruitedByErrorComponentDtoAttrEnum || (UsersCreateRecruitedByErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateRecruitedByErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateRecruitedByErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateRecruitedByErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
+
UsersCreateRecruitedByErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
+
})(UsersCreateRecruitedByErrorComponentDtoCodeEnum || (UsersCreateRecruitedByErrorComponentDtoCodeEnum = {}));
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXJlY3J1aXRlZC1ieS1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLXJlY3J1aXRlZC1ieS1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksK0NBRVg7QUFGRCxXQUFZLCtDQUErQztJQUN6RCwrRUFBNEIsQ0FBQTtBQUM5QixDQUFDLEVBRlcsK0NBQStDLEtBQS9DLCtDQUErQyxRQUUxRDtBQUNELE1BQU0sQ0FBTixJQUFZLCtDQUdYO0FBSEQsV0FBWSwrQ0FBK0M7SUFDekQsa0ZBQStCLENBQUE7SUFDL0IsbUZBQWdDLENBQUE7QUFDbEMsQ0FBQyxFQUhXLCtDQUErQyxLQUEvQywrQ0FBK0MsUUFHMUQiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlUmVjcnVpdGVkQnlFcnJvckNvbXBvbmVudER0byB7XG4gIC8qKlxuICAgKiAqIGByZWNydWl0ZWRfYnlgIC0gcmVjcnVpdGVkX2J5XG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVJlY3J1aXRlZEJ5RXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGRvZXNfbm90X2V4aXN0YCAtIGRvZXNfbm90X2V4aXN0ICogYGluY29ycmVjdF90eXBlYCAtIGluY29ycmVjdF90eXBlXG4gICAqL1xuICBjb2RlOiBVc2Vyc0NyZWF0ZVJlY3J1aXRlZEJ5RXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVJlY3J1aXRlZEJ5RXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIFJlY3J1aXRlZEJ5ID0gXCJyZWNydWl0ZWRfYnlcIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlUmVjcnVpdGVkQnlFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgRG9lc05vdEV4aXN0ID0gXCJkb2VzX25vdF9leGlzdFwiLFxuICBJbmNvcnJlY3RUeXBlID0gXCJpbmNvcnJlY3RfdHlwZVwiLFxufVxuIl19
|
|
@@ -0,0 +1,19 @@
|
|
|
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 var UsersCreateRoleErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateRoleErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateRoleErrorComponentDtoAttrEnum["Role"] = "role";
|
|
13
|
+
})(UsersCreateRoleErrorComponentDtoAttrEnum || (UsersCreateRoleErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateRoleErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateRoleErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateRoleErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
+
UsersCreateRoleErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
+
})(UsersCreateRoleErrorComponentDtoCodeEnum || (UsersCreateRoleErrorComponentDtoCodeEnum = {}));
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXJvbGUtZXJyb3ItY29tcG9uZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3VzZXJzLWNyZWF0ZS1yb2xlLWVycm9yLWNvbXBvbmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0dBUUc7QUFhSCxNQUFNLENBQU4sSUFBWSx3Q0FFWDtBQUZELFdBQVksd0NBQXdDO0lBQ2xELHlEQUFhLENBQUE7QUFDZixDQUFDLEVBRlcsd0NBQXdDLEtBQXhDLHdDQUF3QyxRQUVuRDtBQUNELE1BQU0sQ0FBTixJQUFZLHdDQUdYO0FBSEQsV0FBWSx3Q0FBd0M7SUFDbEQsMkVBQStCLENBQUE7SUFDL0IsNEVBQWdDLENBQUE7QUFDbEMsQ0FBQyxFQUhXLHdDQUF3QyxLQUF4Qyx3Q0FBd0MsUUFHbkQiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlUm9sZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHJvbGVgIC0gcm9sZVxuICAgKi9cbiAgYXR0cjogVXNlcnNDcmVhdGVSb2xlRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGRvZXNfbm90X2V4aXN0YCAtIGRvZXNfbm90X2V4aXN0ICogYGluY29ycmVjdF90eXBlYCAtIGluY29ycmVjdF90eXBlXG4gICAqL1xuICBjb2RlOiBVc2Vyc0NyZWF0ZVJvbGVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlUm9sZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW0ge1xuICBSb2xlID0gXCJyb2xlXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVJvbGVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtIHtcbiAgRG9lc05vdEV4aXN0ID0gXCJkb2VzX25vdF9leGlzdFwiLFxuICBJbmNvcnJlY3RUeXBlID0gXCJpbmNvcnJlY3RfdHlwZVwiLFxufVxuIl19
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateSkypeErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateSkypeErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateSkypeErrorComponentDtoAttrEnum["Skype"] = "skype";
|
|
13
|
+
})(UsersCreateSkypeErrorComponentDtoAttrEnum || (UsersCreateSkypeErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateSkypeErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateSkypeErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateSkypeErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateSkypeErrorComponentDtoCodeEnum || (UsersCreateSkypeErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXNreXBlLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtc2t5cGUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLHlDQUVYO0FBRkQsV0FBWSx5Q0FBeUM7SUFDbkQsNERBQWUsQ0FBQTtBQUNqQixDQUFDLEVBRlcseUNBQXlDLEtBQXpDLHlDQUF5QyxRQUVwRDtBQUNELE1BQU0sQ0FBTixJQUFZLHlDQVFYO0FBUkQsV0FBWSx5Q0FBeUM7SUFDbkQsNERBQWUsQ0FBQTtJQUNmLGdFQUFtQixDQUFBO0lBQ25CLHFFQUF3QixDQUFBO0lBQ3hCLDBEQUFhLENBQUE7SUFDYixxR0FBd0QsQ0FBQTtJQUN4RCxrRUFBcUIsQ0FBQTtJQUNyQiwrR0FBa0UsQ0FBQTtBQUNwRSxDQUFDLEVBUlcseUNBQXlDLEtBQXpDLHlDQUF5QyxRQVFwRCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVTa3lwZUVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHNreXBlYCAtIHNreXBlXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVNreXBlRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGJsYW5rYCAtIGJsYW5rICogYGludmFsaWRgIC0gaW52YWxpZCAqIGBtYXhfbGVuZ3RoYCAtIG1heF9sZW5ndGggKiBgbnVsbGAgLSBudWxsICogYG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBudWxsX2NoYXJhY3RlcnNfbm90X2FsbG93ZWQgKiBgcmVxdWlyZWRgIC0gcmVxdWlyZWQgKiBgc3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRgIC0gc3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcbiAgICovXG4gIGNvZGU6IFVzZXJzQ3JlYXRlU2t5cGVFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlU2t5cGVFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgU2t5cGUgPSBcInNreXBlXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVNreXBlRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIEJsYW5rID0gXCJibGFua1wiLFxuICBJbnZhbGlkID0gXCJpbnZhbGlkXCIsXG4gIE1heExlbmd0aCA9IFwibWF4X2xlbmd0aFwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIE51bGxDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwibnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxuICBTdXJyb2dhdGVDaGFyYWN0ZXJzTm90QWxsb3dlZCA9IFwic3Vycm9nYXRlX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateSlackIdErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateSlackIdErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateSlackIdErrorComponentDtoAttrEnum["SlackId"] = "slack_id";
|
|
13
|
+
})(UsersCreateSlackIdErrorComponentDtoAttrEnum || (UsersCreateSlackIdErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateSlackIdErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateSlackIdErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateSlackIdErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateSlackIdErrorComponentDtoCodeEnum || (UsersCreateSlackIdErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXNsYWNrLWlkLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtc2xhY2staWQtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLDJDQUVYO0FBRkQsV0FBWSwyQ0FBMkM7SUFDckQsbUVBQW9CLENBQUE7QUFDdEIsQ0FBQyxFQUZXLDJDQUEyQyxLQUEzQywyQ0FBMkMsUUFFdEQ7QUFDRCxNQUFNLENBQU4sSUFBWSwyQ0FRWDtBQVJELFdBQVksMkNBQTJDO0lBQ3JELDhEQUFlLENBQUE7SUFDZixrRUFBbUIsQ0FBQTtJQUNuQix1RUFBd0IsQ0FBQTtJQUN4Qiw0REFBYSxDQUFBO0lBQ2IsdUdBQXdELENBQUE7SUFDeEQsb0VBQXFCLENBQUE7SUFDckIsaUhBQWtFLENBQUE7QUFDcEUsQ0FBQyxFQVJXLDJDQUEyQyxLQUEzQywyQ0FBMkMsUUFRdEQiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlU2xhY2tJZEVycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHNsYWNrX2lkYCAtIHNsYWNrX2lkXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVNsYWNrSWRFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtO1xuICAvKipcbiAgICogKiBgYmxhbmtgIC0gYmxhbmsgKiBgaW52YWxpZGAgLSBpbnZhbGlkICogYG1heF9sZW5ndGhgIC0gbWF4X2xlbmd0aCAqIGBudWxsYCAtIG51bGwgKiBgbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIG51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZCAqIGBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZGAgLSBzdXJyb2dhdGVfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVTbGFja0lkRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVNsYWNrSWRFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgU2xhY2tJZCA9IFwic2xhY2tfaWRcIixcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlU2xhY2tJZEVycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBCbGFuayA9IFwiYmxhbmtcIixcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBNYXhMZW5ndGggPSBcIm1heF9sZW5ndGhcIixcbiAgTnVsbCA9IFwibnVsbFwiLFxuICBOdWxsQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcIm51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFwiLFxuICBSZXF1aXJlZCA9IFwicmVxdWlyZWRcIixcbiAgU3Vycm9nYXRlQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcInN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG59XG4iXX0=
|
|
@@ -0,0 +1,20 @@
|
|
|
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 var UsersCreateStatusErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateStatusErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateStatusErrorComponentDtoAttrEnum["Status"] = "status";
|
|
13
|
+
})(UsersCreateStatusErrorComponentDtoAttrEnum || (UsersCreateStatusErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateStatusErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateStatusErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateStatusErrorComponentDtoCodeEnum["InvalidChoice"] = "invalid_choice";
|
|
17
|
+
UsersCreateStatusErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18
|
+
UsersCreateStatusErrorComponentDtoCodeEnum["Required"] = "required";
|
|
19
|
+
})(UsersCreateStatusErrorComponentDtoCodeEnum || (UsersCreateStatusErrorComponentDtoCodeEnum = {}));
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXN0YXR1cy1lcnJvci1jb21wb25lbnQuZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvdXNlcnMtY3JlYXRlLXN0YXR1cy1lcnJvci1jb21wb25lbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBYUgsTUFBTSxDQUFOLElBQVksMENBRVg7QUFGRCxXQUFZLDBDQUEwQztJQUNwRCwrREFBaUIsQ0FBQTtBQUNuQixDQUFDLEVBRlcsMENBQTBDLEtBQTFDLDBDQUEwQyxRQUVyRDtBQUNELE1BQU0sQ0FBTixJQUFZLDBDQUlYO0FBSkQsV0FBWSwwQ0FBMEM7SUFDcEQsOEVBQWdDLENBQUE7SUFDaEMsMkRBQWEsQ0FBQTtJQUNiLG1FQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFKVywwQ0FBMEMsS0FBMUMsMENBQTBDLFFBSXJEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuZXhwb3J0IGludGVyZmFjZSBVc2Vyc0NyZWF0ZVN0YXR1c0Vycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHN0YXR1c2AgLSBzdGF0dXNcbiAgICovXG4gIGF0dHI6IFVzZXJzQ3JlYXRlU3RhdHVzRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGludmFsaWRfY2hvaWNlYCAtIGludmFsaWRfY2hvaWNlICogYG51bGxgIC0gbnVsbCAqIGByZXF1aXJlZGAgLSByZXF1aXJlZFxuICAgKi9cbiAgY29kZTogVXNlcnNDcmVhdGVTdGF0dXNFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlU3RhdHVzRXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIFN0YXR1cyA9IFwic3RhdHVzXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVN0YXR1c0Vycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBJbnZhbGlkQ2hvaWNlID0gXCJpbnZhbGlkX2Nob2ljZVwiLFxuICBOdWxsID0gXCJudWxsXCIsXG4gIFJlcXVpcmVkID0gXCJyZXF1aXJlZFwiLFxufVxuIl19
|
|
@@ -0,0 +1,22 @@
|
|
|
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 var UsersCreateSuperviseesErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateSuperviseesErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateSuperviseesErrorComponentDtoAttrEnum["Supervisees"] = "supervisees";
|
|
13
|
+
})(UsersCreateSuperviseesErrorComponentDtoAttrEnum || (UsersCreateSuperviseesErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateSuperviseesErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateSuperviseesErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateSuperviseesErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
+
UsersCreateSuperviseesErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
+
UsersCreateSuperviseesErrorComponentDtoCodeEnum["NotAList"] = "not_a_list";
|
|
19
|
+
UsersCreateSuperviseesErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateSuperviseesErrorComponentDtoCodeEnum["Required"] = "required";
|
|
21
|
+
})(UsersCreateSuperviseesErrorComponentDtoCodeEnum || (UsersCreateSuperviseesErrorComponentDtoCodeEnum = {}));
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXN1cGVydmlzZWVzLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtc3VwZXJ2aXNlZXMtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLCtDQUVYO0FBRkQsV0FBWSwrQ0FBK0M7SUFDekQsOEVBQTJCLENBQUE7QUFDN0IsQ0FBQyxFQUZXLCtDQUErQyxLQUEvQywrQ0FBK0MsUUFFMUQ7QUFDRCxNQUFNLENBQU4sSUFBWSwrQ0FNWDtBQU5ELFdBQVksK0NBQStDO0lBQ3pELGtGQUErQixDQUFBO0lBQy9CLG1GQUFnQyxDQUFBO0lBQ2hDLDBFQUF1QixDQUFBO0lBQ3ZCLGdFQUFhLENBQUE7SUFDYix3RUFBcUIsQ0FBQTtBQUN2QixDQUFDLEVBTlcsK0NBQStDLEtBQS9DLCtDQUErQyxRQU0xRCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVTdXBlcnZpc2Vlc0Vycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHN1cGVydmlzZWVzYCAtIHN1cGVydmlzZWVzXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVN1cGVydmlzZWVzRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGRvZXNfbm90X2V4aXN0YCAtIGRvZXNfbm90X2V4aXN0ICogYGluY29ycmVjdF90eXBlYCAtIGluY29ycmVjdF90eXBlICogYG5vdF9hX2xpc3RgIC0gbm90X2FfbGlzdCAqIGBudWxsYCAtIG51bGwgKiBgcmVxdWlyZWRgIC0gcmVxdWlyZWRcbiAgICovXG4gIGNvZGU6IFVzZXJzQ3JlYXRlU3VwZXJ2aXNlZXNFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlU3VwZXJ2aXNlZXNFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgU3VwZXJ2aXNlZXMgPSBcInN1cGVydmlzZWVzXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVN1cGVydmlzZWVzRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIERvZXNOb3RFeGlzdCA9IFwiZG9lc19ub3RfZXhpc3RcIixcbiAgSW5jb3JyZWN0VHlwZSA9IFwiaW5jb3JyZWN0X3R5cGVcIixcbiAgTm90QUxpc3QgPSBcIm5vdF9hX2xpc3RcIixcbiAgTnVsbCA9IFwibnVsbFwiLFxuICBSZXF1aXJlZCA9IFwicmVxdWlyZWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,22 @@
|
|
|
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 var UsersCreateSupervisorsErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateSupervisorsErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateSupervisorsErrorComponentDtoAttrEnum["Supervisors"] = "supervisors";
|
|
13
|
+
})(UsersCreateSupervisorsErrorComponentDtoAttrEnum || (UsersCreateSupervisorsErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateSupervisorsErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateSupervisorsErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateSupervisorsErrorComponentDtoCodeEnum["DoesNotExist"] = "does_not_exist";
|
|
17
|
+
UsersCreateSupervisorsErrorComponentDtoCodeEnum["IncorrectType"] = "incorrect_type";
|
|
18
|
+
UsersCreateSupervisorsErrorComponentDtoCodeEnum["NotAList"] = "not_a_list";
|
|
19
|
+
UsersCreateSupervisorsErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateSupervisorsErrorComponentDtoCodeEnum["Required"] = "required";
|
|
21
|
+
})(UsersCreateSupervisorsErrorComponentDtoCodeEnum || (UsersCreateSupervisorsErrorComponentDtoCodeEnum = {}));
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXN1cGVydmlzb3JzLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtc3VwZXJ2aXNvcnMtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLCtDQUVYO0FBRkQsV0FBWSwrQ0FBK0M7SUFDekQsOEVBQTJCLENBQUE7QUFDN0IsQ0FBQyxFQUZXLCtDQUErQyxLQUEvQywrQ0FBK0MsUUFFMUQ7QUFDRCxNQUFNLENBQU4sSUFBWSwrQ0FNWDtBQU5ELFdBQVksK0NBQStDO0lBQ3pELGtGQUErQixDQUFBO0lBQy9CLG1GQUFnQyxDQUFBO0lBQ2hDLDBFQUF1QixDQUFBO0lBQ3ZCLGdFQUFhLENBQUE7SUFDYix3RUFBcUIsQ0FBQTtBQUN2QixDQUFDLEVBTlcsK0NBQStDLEtBQS9DLCtDQUErQyxRQU0xRCIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5cbmV4cG9ydCBpbnRlcmZhY2UgVXNlcnNDcmVhdGVTdXBlcnZpc29yc0Vycm9yQ29tcG9uZW50RHRvIHtcbiAgLyoqXG4gICAqICogYHN1cGVydmlzb3JzYCAtIHN1cGVydmlzb3JzXG4gICAqL1xuICBhdHRyOiBVc2Vyc0NyZWF0ZVN1cGVydmlzb3JzRXJyb3JDb21wb25lbnREdG9BdHRyRW51bTtcbiAgLyoqXG4gICAqICogYGRvZXNfbm90X2V4aXN0YCAtIGRvZXNfbm90X2V4aXN0ICogYGluY29ycmVjdF90eXBlYCAtIGluY29ycmVjdF90eXBlICogYG5vdF9hX2xpc3RgIC0gbm90X2FfbGlzdCAqIGBudWxsYCAtIG51bGwgKiBgcmVxdWlyZWRgIC0gcmVxdWlyZWRcbiAgICovXG4gIGNvZGU6IFVzZXJzQ3JlYXRlU3VwZXJ2aXNvcnNFcnJvckNvbXBvbmVudER0b0NvZGVFbnVtO1xuICBkZXRhaWw6IHN0cmluZztcbn1cbmV4cG9ydCBlbnVtIFVzZXJzQ3JlYXRlU3VwZXJ2aXNvcnNFcnJvckNvbXBvbmVudER0b0F0dHJFbnVtIHtcbiAgU3VwZXJ2aXNvcnMgPSBcInN1cGVydmlzb3JzXCIsXG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVN1cGVydmlzb3JzRXJyb3JDb21wb25lbnREdG9Db2RlRW51bSB7XG4gIERvZXNOb3RFeGlzdCA9IFwiZG9lc19ub3RfZXhpc3RcIixcbiAgSW5jb3JyZWN0VHlwZSA9IFwiaW5jb3JyZWN0X3R5cGVcIixcbiAgTm90QUxpc3QgPSBcIm5vdF9hX2xpc3RcIixcbiAgTnVsbCA9IFwibnVsbFwiLFxuICBSZXF1aXJlZCA9IFwicmVxdWlyZWRcIixcbn1cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
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 var UsersCreateTimezoneErrorComponentDtoAttrEnum;
|
|
11
|
+
(function (UsersCreateTimezoneErrorComponentDtoAttrEnum) {
|
|
12
|
+
UsersCreateTimezoneErrorComponentDtoAttrEnum["Timezone"] = "timezone";
|
|
13
|
+
})(UsersCreateTimezoneErrorComponentDtoAttrEnum || (UsersCreateTimezoneErrorComponentDtoAttrEnum = {}));
|
|
14
|
+
export var UsersCreateTimezoneErrorComponentDtoCodeEnum;
|
|
15
|
+
(function (UsersCreateTimezoneErrorComponentDtoCodeEnum) {
|
|
16
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["Blank"] = "blank";
|
|
17
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["MaxLength"] = "max_length";
|
|
19
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["Null"] = "null";
|
|
20
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["NullCharactersNotAllowed"] = "null_characters_not_allowed";
|
|
21
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["Required"] = "required";
|
|
22
|
+
UsersCreateTimezoneErrorComponentDtoCodeEnum["SurrogateCharactersNotAllowed"] = "surrogate_characters_not_allowed";
|
|
23
|
+
})(UsersCreateTimezoneErrorComponentDtoCodeEnum || (UsersCreateTimezoneErrorComponentDtoCodeEnum = {}));
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMtY3JlYXRlLXRpbWV6b25lLWVycm9yLWNvbXBvbmVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC91c2Vycy1jcmVhdGUtdGltZXpvbmUtZXJyb3ItY29tcG9uZW50LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQWFILE1BQU0sQ0FBTixJQUFZLDRDQUVYO0FBRkQsV0FBWSw0Q0FBNEM7SUFDdEQscUVBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQUZXLDRDQUE0QyxLQUE1Qyw0Q0FBNEMsUUFFdkQ7QUFDRCxNQUFNLENBQU4sSUFBWSw0Q0FRWDtBQVJELFdBQVksNENBQTRDO0lBQ3RELCtEQUFlLENBQUE7SUFDZixtRUFBbUIsQ0FBQTtJQUNuQix3RUFBd0IsQ0FBQTtJQUN4Qiw2REFBYSxDQUFBO0lBQ2Isd0dBQXdELENBQUE7SUFDeEQscUVBQXFCLENBQUE7SUFDckIsa0hBQWtFLENBQUE7QUFDcEUsQ0FBQyxFQVJXLDRDQUE0QyxLQUE1Qyw0Q0FBNEMsUUFRdkQiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJzQ3JlYXRlVGltZXpvbmVFcnJvckNvbXBvbmVudER0byB7XG4gIC8qKlxuICAgKiAqIGB0aW1lem9uZWAgLSB0aW1lem9uZVxuICAgKi9cbiAgYXR0cjogVXNlcnNDcmVhdGVUaW1lem9uZUVycm9yQ29tcG9uZW50RHRvQXR0ckVudW07XG4gIC8qKlxuICAgKiAqIGBibGFua2AgLSBibGFuayAqIGBpbnZhbGlkYCAtIGludmFsaWQgKiBgbWF4X2xlbmd0aGAgLSBtYXhfbGVuZ3RoICogYG51bGxgIC0gbnVsbCAqIGBudWxsX2NoYXJhY3RlcnNfbm90X2FsbG93ZWRgIC0gbnVsbF9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkICogYHJlcXVpcmVkYCAtIHJlcXVpcmVkICogYHN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkYCAtIHN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXG4gICAqL1xuICBjb2RlOiBVc2Vyc0NyZWF0ZVRpbWV6b25lRXJyb3JDb21wb25lbnREdG9Db2RlRW51bTtcbiAgZGV0YWlsOiBzdHJpbmc7XG59XG5leHBvcnQgZW51bSBVc2Vyc0NyZWF0ZVRpbWV6b25lRXJyb3JDb21wb25lbnREdG9BdHRyRW51bSB7XG4gIFRpbWV6b25lID0gXCJ0aW1lem9uZVwiLFxufVxuZXhwb3J0IGVudW0gVXNlcnNDcmVhdGVUaW1lem9uZUVycm9yQ29tcG9uZW50RHRvQ29kZUVudW0ge1xuICBCbGFuayA9IFwiYmxhbmtcIixcbiAgSW52YWxpZCA9IFwiaW52YWxpZFwiLFxuICBNYXhMZW5ndGggPSBcIm1heF9sZW5ndGhcIixcbiAgTnVsbCA9IFwibnVsbFwiLFxuICBOdWxsQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcIm51bGxfY2hhcmFjdGVyc19ub3RfYWxsb3dlZFwiLFxuICBSZXF1aXJlZCA9IFwicmVxdWlyZWRcIixcbiAgU3Vycm9nYXRlQ2hhcmFjdGVyc05vdEFsbG93ZWQgPSBcInN1cnJvZ2F0ZV9jaGFyYWN0ZXJzX25vdF9hbGxvd2VkXCIsXG59XG4iXX0=
|