@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,150 @@
|
|
|
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
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
11
|
+
import { Inject, Injectable, Optional } from "@angular/core";
|
|
12
|
+
import { HttpHeaders, HttpContext, } from "@angular/common/http";
|
|
13
|
+
import { CustomHttpParameterCodec } from "../encoder";
|
|
14
|
+
// @ts-ignore
|
|
15
|
+
import { BASE_PATH } from "../variables";
|
|
16
|
+
import { Configuration } from "../configuration";
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
import * as i1 from "@angular/common/http";
|
|
19
|
+
import * as i2 from "../configuration";
|
|
20
|
+
export class PermissionDataApiService {
|
|
21
|
+
httpClient;
|
|
22
|
+
basePath = "";
|
|
23
|
+
defaultHeaders = new HttpHeaders();
|
|
24
|
+
configuration = new Configuration();
|
|
25
|
+
encoder;
|
|
26
|
+
constructor(httpClient, basePath, configuration) {
|
|
27
|
+
this.httpClient = httpClient;
|
|
28
|
+
if (configuration) {
|
|
29
|
+
this.configuration = configuration;
|
|
30
|
+
}
|
|
31
|
+
if (typeof this.configuration.basePath !== "string") {
|
|
32
|
+
const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
|
|
33
|
+
if (firstBasePath != undefined) {
|
|
34
|
+
basePath = firstBasePath;
|
|
35
|
+
}
|
|
36
|
+
if (typeof basePath !== "string") {
|
|
37
|
+
basePath = this.basePath;
|
|
38
|
+
}
|
|
39
|
+
this.configuration.basePath = basePath;
|
|
40
|
+
}
|
|
41
|
+
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
|
|
42
|
+
}
|
|
43
|
+
// @ts-ignore
|
|
44
|
+
addToHttpParams(httpParams, value, key) {
|
|
45
|
+
if (typeof value === "object" && value instanceof Date === false) {
|
|
46
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value);
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
|
|
50
|
+
}
|
|
51
|
+
return httpParams;
|
|
52
|
+
}
|
|
53
|
+
addToHttpParamsRecursive(httpParams, value, key) {
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return httpParams;
|
|
56
|
+
}
|
|
57
|
+
if (typeof value === "object") {
|
|
58
|
+
if (Array.isArray(value)) {
|
|
59
|
+
value.forEach((elem) => (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)));
|
|
60
|
+
}
|
|
61
|
+
else if (value instanceof Date) {
|
|
62
|
+
if (key != null) {
|
|
63
|
+
httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
throw Error("key may not be null if value is Date");
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
Object.keys(value).forEach((k) => (httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k)));
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
else if (key != null) {
|
|
74
|
+
httpParams = httpParams.append(key, value);
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
throw Error("key may not be null if value is not object or array");
|
|
78
|
+
}
|
|
79
|
+
return httpParams;
|
|
80
|
+
}
|
|
81
|
+
permissionDataRetrieve(observe = "body", reportProgress = false, options) {
|
|
82
|
+
let localVarHeaders = this.defaultHeaders;
|
|
83
|
+
let localVarCredential;
|
|
84
|
+
// authentication (cookieAuth) required
|
|
85
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
86
|
+
if (localVarCredential) {
|
|
87
|
+
}
|
|
88
|
+
// authentication (jwtAuth) required
|
|
89
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
90
|
+
if (localVarCredential) {
|
|
91
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
92
|
+
}
|
|
93
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
94
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
95
|
+
// to determine the Accept header
|
|
96
|
+
const httpHeaderAccepts = ["application/json"];
|
|
97
|
+
localVarHttpHeaderAcceptSelected =
|
|
98
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
99
|
+
}
|
|
100
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
101
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
102
|
+
}
|
|
103
|
+
let localVarHttpContext = options && options.context;
|
|
104
|
+
if (localVarHttpContext === undefined) {
|
|
105
|
+
localVarHttpContext = new HttpContext();
|
|
106
|
+
}
|
|
107
|
+
let localVarTransferCache = options && options.transferCache;
|
|
108
|
+
if (localVarTransferCache === undefined) {
|
|
109
|
+
localVarTransferCache = true;
|
|
110
|
+
}
|
|
111
|
+
let responseType_ = "json";
|
|
112
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
113
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
114
|
+
responseType_ = "text";
|
|
115
|
+
}
|
|
116
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
117
|
+
responseType_ = "json";
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
responseType_ = "blob";
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
let localVarPath = `/api/v1/permission-data`;
|
|
124
|
+
return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
|
|
125
|
+
context: localVarHttpContext,
|
|
126
|
+
responseType: responseType_,
|
|
127
|
+
withCredentials: this.configuration.withCredentials,
|
|
128
|
+
headers: localVarHeaders,
|
|
129
|
+
observe: observe,
|
|
130
|
+
transferCache: localVarTransferCache,
|
|
131
|
+
reportProgress: reportProgress,
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.10", ngImport: i0, type: PermissionDataApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
135
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.10", ngImport: i0, type: PermissionDataApiService, providedIn: "root" });
|
|
136
|
+
}
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.10", ngImport: i0, type: PermissionDataApiService, decorators: [{
|
|
138
|
+
type: Injectable,
|
|
139
|
+
args: [{
|
|
140
|
+
providedIn: "root",
|
|
141
|
+
}]
|
|
142
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
143
|
+
type: Optional
|
|
144
|
+
}, {
|
|
145
|
+
type: Inject,
|
|
146
|
+
args: [BASE_PATH]
|
|
147
|
+
}] }, { type: i2.Configuration, decorators: [{
|
|
148
|
+
type: Optional
|
|
149
|
+
}] }] });
|
|
150
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVybWlzc2lvbi1kYXRhLWFwaS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vYXBpL3Blcm1pc3Npb24tZGF0YS1hcGkuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7R0FRRztBQUNILHVEQUF1RDtBQUV2RCxPQUFPLEVBQUUsTUFBTSxFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDN0QsT0FBTyxFQUVMLFdBQVcsRUFLWCxXQUFXLEdBQ1osTUFBTSxzQkFBc0IsQ0FBQztBQUM5QixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFrQnRELGFBQWE7QUFDYixPQUFPLEVBQUUsU0FBUyxFQUFzQixNQUFNLGNBQWMsQ0FBQztBQUM3RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7QUFNakQsTUFBTSxPQUFPLHdCQUF3QjtJQVN2QjtJQU5GLFFBQVEsR0FBRyxFQUFFLENBQUM7SUFDakIsY0FBYyxHQUFHLElBQUksV0FBVyxFQUFFLENBQUM7SUFDbkMsYUFBYSxHQUFHLElBQUksYUFBYSxFQUFFLENBQUM7SUFDcEMsT0FBTyxDQUFxQjtJQUVuQyxZQUNZLFVBQXNCLEVBQ0QsUUFBMkIsRUFDOUMsYUFBNEI7UUFGOUIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQUloQyxJQUFJLGFBQWEsRUFBRSxDQUFDO1lBQ2xCLElBQUksQ0FBQyxhQUFhLEdBQUcsYUFBYSxDQUFDO1FBQ3JDLENBQUM7UUFDRCxJQUFJLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxRQUFRLEtBQUssUUFBUSxFQUFFLENBQUM7WUFDcEQsTUFBTSxhQUFhLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDeEUsSUFBSSxh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Tk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG4vKiB0c2xpbnQ6ZGlzYWJsZTpuby11bnVzZWQtdmFyaWFibGUgbWVtYmVyLW9yZGVyaW5nICovXG5cbmltcG9ydCB7IEluamVjdCwgSW5qZWN0YWJsZSwgT3B0aW9uYWwgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuaW1wb3J0IHtcbiAgSHR0cENsaWVudCxcbiAgSHR0cEhlYWRlcnMsXG4gIEh0dHBQYXJhbXMsXG4gIEh0dHBSZXNwb25zZSxcbiAgSHR0cEV2ZW50LFxuICBIdHRwUGFyYW1ldGVyQ29kZWMsXG4gIEh0dHBDb250ZXh0LFxufSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uL2h0dHBcIjtcbmltcG9ydCB7IEN1c3RvbUh0dHBQYXJhbWV0ZXJDb2RlYyB9IGZyb20gXCIuLi9lbmNvZGVyXCI7XG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSBcInJ4anNcIjtcblxuLy8gQHRzLWlnbm9yZVxuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTQwMUR0byB9IGZyb20gXCIuLi9tb2RlbC9lcnJvci1yZXNwb25zZTQwMS5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IEVycm9yUmVzcG9uc2U0MDVEdG8gfSBmcm9tIFwiLi4vbW9kZWwvZXJyb3ItcmVzcG9uc2U0MDUuZHRvXCI7XG4vLyBAdHMtaWdub3JlXG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNDA2RHRvIH0gZnJvbSBcIi4uL21vZGVsL2Vycm9yLXJlc3BvbnNlNDA2LmR0b1wiO1xuLy8gQHRzLWlnbm9yZVxuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTQxNUR0byB9IGZyb20gXCIuLi9tb2RlbC9lcnJvci1yZXNwb25zZTQxNS5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IEVycm9yUmVzcG9uc2U1MDBEdG8gfSBmcm9tIFwiLi4vbW9kZWwvZXJyb3ItcmVzcG9uc2U1MDAuZHRvXCI7XG4vLyBAdHMtaWdub3JlXG5pbXBvcnQgeyBQZXJtaXNzaW9uRGF0YUR0byB9IGZyb20gXCIuLi9tb2RlbC9wZXJtaXNzaW9uLWRhdGEuZHRvXCI7XG4vLyBAdHMtaWdub3JlXG5pbXBvcnQgeyBQZXJtaXNzaW9uRGF0YVJldHJpZXZlRXJyb3JSZXNwb25zZTQwMER0byB9IGZyb20gXCIuLi9tb2RlbC9wZXJtaXNzaW9uLWRhdGEtcmV0cmlldmUtZXJyb3ItcmVzcG9uc2U0MDAuZHRvXCI7XG5cbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IEJBU0VfUEFUSCwgQ09MTEVDVElPTl9GT1JNQVRTIH0gZnJvbSBcIi4uL3ZhcmlhYmxlc1wiO1xuaW1wb3J0IHsgQ29uZmlndXJhdGlvbiB9IGZyb20gXCIuLi9jb25maWd1cmF0aW9uXCI7XG5pbXBvcnQgeyBQZXJtaXNzaW9uRGF0YUFwaVNlcnZpY2VJbnRlcmZhY2UgfSBmcm9tIFwiLi9wZXJtaXNzaW9uLWRhdGEtYXBpLnNlcnZpY2VJbnRlcmZhY2VcIjtcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiBcInJvb3RcIixcbn0pXG5leHBvcnQgY2xhc3MgUGVybWlzc2lvbkRhdGFBcGlTZXJ2aWNlXG4gIGltcGxlbWVudHMgUGVybWlzc2lvbkRhdGFBcGlTZXJ2aWNlSW50ZXJmYWNlXG57XG4gIHByb3RlY3RlZCBiYXNlUGF0aCA9IFwiXCI7XG4gIHB1YmxpYyBkZWZhdWx0SGVhZGVycyA9IG5ldyBIdHRwSGVhZGVycygpO1xuICBwdWJsaWMgY29uZmlndXJhdGlvbiA9IG5ldyBDb25maWd1cmF0aW9uKCk7XG4gIHB1YmxpYyBlbmNvZGVyOiBIdHRwUGFyYW1ldGVyQ29kZWM7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJvdGVjdGVkIGh0dHBDbGllbnQ6IEh0dHBDbGllbnQsXG4gICAgQE9wdGlvbmFsKCkgQEluamVjdChCQVNFX1BBVEgpIGJhc2VQYXRoOiBzdHJpbmcgfCBzdHJpbmdbXSxcbiAgICBAT3B0aW9uYWwoKSBjb25maWd1cmF0aW9uOiBDb25maWd1cmF0aW9uLFxuICApIHtcbiAgICBpZiAoY29uZmlndXJhdGlvbikge1xuICAgICAgdGhpcy5jb25maWd1cmF0aW9uID0gY29uZmlndXJhdGlvbjtcbiAgICB9XG4gICAgaWYgKHR5cGVvZiB0aGlzLmNvbmZpZ3VyYXRpb24uYmFzZVBhdGggIT09IFwic3RyaW5nXCIpIHtcbiAgICAgIGNvbnN0IGZpcnN0QmFzZVBhdGggPSBBcnJheS5pc0FycmF5KGJhc2VQYXRoKSA/IGJhc2VQYXRoWzBdIDogdW5kZWZpbmVkO1xuICAgICAgaWYgKGZpcnN0QmFzZVBhdGggIT0gdW5kZWZpbmVkKSB7XG4gICAgICAgIGJhc2VQYXRoID0gZmlyc3RCYXNlUGF0aDtcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBiYXNlUGF0aCAhPT0gXCJzdHJpbmdcIikge1xuICAgICAgICBiYXNlUGF0aCA9IHRoaXMuYmFzZVBhdGg7XG4gICAgICB9XG4gICAgICB0aGlzLmNvbmZpZ3VyYXRpb24uYmFzZVBhdGggPSBiYXNlUGF0aDtcbiAgICB9XG4gICAgdGhpcy5lbmNvZGVyID0gdGhpcy5jb25maWd1cmF0aW9uLmVuY29kZXIgfHwgbmV3IEN1c3RvbUh0dHBQYXJhbWV0ZXJDb2RlYygpO1xuICB9XG5cbiAgLy8gQHRzLWlnbm9yZVxuICBwcml2YXRlIGFkZFRvSHR0cFBhcmFtcyhcbiAgICBodHRwUGFyYW1zOiBIdHRwUGFyYW1zLFxuICAgIHZhbHVlOiBhbnksXG4gICAga2V5Pzogc3RyaW5nLFxuICApOiBIdHRwUGFyYW1zIHtcbiAgICBpZiAodHlwZW9mIHZhbHVlID09PSBcIm9iamVjdFwiICYmIHZhbHVlIGluc3RhbmNlb2YgRGF0ZSA9PT0gZmFsc2UpIHtcbiAgICAgIGh0dHBQYXJhbXMgPSB0aGlzLmFkZFRvSHR0cFBhcmFtc1JlY3Vyc2l2ZShodHRwUGFyYW1zLCB2YWx1ZSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIGh0dHBQYXJhbXMgPSB0aGlzLmFkZFRvSHR0cFBhcmFtc1JlY3Vyc2l2ZShodHRwUGFyYW1zLCB2YWx1ZSwga2V5KTtcbiAgICB9XG4gICAgcmV0dXJuIGh0dHBQYXJhbXM7XG4gIH1cblxuICBwcml2YXRlIGFkZFRvSHR0cFBhcmFtc1JlY3Vyc2l2ZShcbiAgICBodHRwUGFyYW1zOiBIdHRwUGFyYW1zLFxuICAgIHZhbHVlPzogYW55LFxuICAgIGtleT86IHN0cmluZyxcbiAgKTogSHR0cFBhcmFtcyB7XG4gICAgaWYgKHZhbHVlID09IG51bGwpIHtcbiAgICAgIHJldHVybiBodHRwUGFyYW1zO1xuICAgIH1cblxuICAgIGlmICh0eXBlb2YgdmFsdWUgPT09IFwib2JqZWN0XCIpIHtcbiAgICAgIGlmIChBcnJheS5pc0FycmF5KHZhbHVlKSkge1xuICAgICAgICAodmFsdWUgYXMgYW55W10pLmZvckVhY2goXG4gICAgICAgICAgKGVsZW0pID0+XG4gICAgICAgICAgICAoaHR0cFBhcmFtcyA9IHRoaXMuYWRkVG9IdHRwUGFyYW1zUmVjdXJzaXZlKGh0dHBQYXJhbXMsIGVsZW0sIGtleSkpLFxuICAgICAgICApO1xuICAgICAgfSBlbHNlIGlmICh2YWx1ZSBpbnN0YW5jZW9mIERhdGUpIHtcbiAgICAgICAgaWYgKGtleSAhPSBudWxsKSB7XG4gICAgICAgICAgaHR0cFBhcmFtcyA9IGh0dHBQYXJhbXMuYXBwZW5kKFxuICAgICAgICAgICAga2V5LFxuICAgICAgICAgICAgKHZhbHVlIGFzIERhdGUpLnRvSVNPU3RyaW5nKCkuc3Vic3RyaW5nKDAsIDEwKSxcbiAgICAgICAgICApO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHRocm93IEVycm9yKFwia2V5IG1heSBub3QgYmUgbnVsbCBpZiB2YWx1ZSBpcyBEYXRlXCIpO1xuICAgICAgICB9XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBPYmplY3Qua2V5cyh2YWx1ZSkuZm9yRWFjaChcbiAgICAgICAgICAoaykgPT5cbiAgICAgICAgICAgIChodHRwUGFyYW1zID0gdGhpcy5hZGRUb0h0dHBQYXJhbXNSZWN1cnNpdmUoXG4gICAgICAgICAgICAgIGh0dHBQYXJhbXMsXG4gICAgICAgICAgICAgIHZhbHVlW2tdLFxuICAgICAgICAgICAgICBrZXkgIT0gbnVsbCA/IGAke2tleX0uJHtrfWAgOiBrLFxuICAgICAgICAgICAgKSksXG4gICAgICAgICk7XG4gICAgICB9XG4gICAgfSBlbHNlIGlmIChrZXkgIT0gbnVsbCkge1xuICAgICAgaHR0cFBhcmFtcyA9IGh0dHBQYXJhbXMuYXBwZW5kKGtleSwgdmFsdWUpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aHJvdyBFcnJvcihcImtleSBtYXkgbm90IGJlIG51bGwgaWYgdmFsdWUgaXMgbm90IG9iamVjdCBvciBhcnJheVwiKTtcbiAgICB9XG4gICAgcmV0dXJuIGh0dHBQYXJhbXM7XG4gIH1cblxuICAvKipcbiAgICogR2V0IHBlcm1pc3Npb24gZGF0YS5cbiAgICogQHBhcmFtIG9ic2VydmUgc2V0IHdoZXRoZXIgb3Igbm90IHRvIHJldHVybiB0aGUgZGF0YSBPYnNlcnZhYmxlIGFzIHRoZSBib2R5LCByZXNwb25zZSBvciBldmVudHMuIGRlZmF1bHRzIHRvIHJldHVybmluZyB0aGUgYm9keS5cbiAgICogQHBhcmFtIHJlcG9ydFByb2dyZXNzIGZsYWcgdG8gcmVwb3J0IHJlcXVlc3QgYW5kIHJlc3BvbnNlIHByb2dyZXNzLlxuICAgKi9cbiAgcHVibGljIHBlcm1pc3Npb25EYXRhUmV0cmlldmUoXG4gICAgb2JzZXJ2ZT86IFwiYm9keVwiLFxuICAgIHJlcG9ydFByb2dyZXNzPzogYm9vbGVhbixcbiAgICBvcHRpb25zPzoge1xuICAgICAgaHR0cEhlYWRlckFjY2VwdD86IFwiYXBwbGljYXRpb24vanNvblwiO1xuICAgICAgY29udGV4dD86IEh0dHBDb250ZXh0O1xuICAgICAgdHJhbnNmZXJDYWNoZT86IGJvb2xlYW47XG4gICAgfSxcbiAgKTogT2JzZXJ2YWJsZTxQZXJtaXNzaW9uRGF0YUR0bz47XG4gIHB1YmxpYyBwZXJtaXNzaW9uRGF0YVJldHJpZXZlKFxuICAgIG9ic2VydmU/OiBcInJlc3BvbnNlXCIsXG4gICAgcmVwb3J0UHJvZ3Jlc3M/OiBib29sZWFuLFxuICAgIG9wdGlvbnM/OiB7XG4gICAgICBodHRwSGVhZGVyQWNjZXB0PzogXCJhcHBsaWNhdGlvbi9qc29uXCI7XG4gICAgICBjb250ZXh0PzogSHR0cENvbnRleHQ7XG4gICAgICB0cmFuc2ZlckNhY2hlPzogYm9vbGVhbjtcbiAgICB9LFxuICApOiBPYnNlcnZhYmxlPEh0dHBSZXNwb25zZTxQZXJtaXNzaW9uRGF0YUR0bz4+O1xuICBwdWJsaWMgcGVybWlzc2lvbkRhdGFSZXRyaWV2ZShcbiAgICBvYnNlcnZlPzogXCJldmVudHNcIixcbiAgICByZXBvcnRQcm9ncmVzcz86IGJvb2xlYW4sXG4gICAgb3B0aW9ucz86IHtcbiAgICAgIGh0dHBIZWFkZXJBY2NlcHQ/OiBcImFwcGxpY2F0aW9uL2pzb25cIjtcbiAgICAgIGNvbnRleHQ/OiBIdHRwQ29udGV4dDtcbiAgICAgIHRyYW5zZmVyQ2FjaGU/OiBib29sZWFuO1xuICAgIH0sXG4gICk6IE9ic2VydmFibGU8SHR0cEV2ZW50PFBlcm1pc3Npb25EYXRhRHRvPj47XG4gIHB1YmxpYyBwZXJtaXNzaW9uRGF0YVJldHJpZXZlKFxuICAgIG9ic2VydmU6IGFueSA9IFwiYm9keVwiLFxuICAgIHJlcG9ydFByb2dyZXNzOiBib29sZWFuID0gZmFsc2UsXG4gICAgb3B0aW9ucz86IHtcbiAgICAgIGh0dHBIZWFkZXJBY2NlcHQ/OiBcImFwcGxpY2F0aW9uL2pzb25cIjtcbiAgICAgIGNvbnRleHQ/OiBIdHRwQ29udGV4dDtcbiAgICAgIHRyYW5zZmVyQ2FjaGU/OiBib29sZWFuO1xuICAgIH0sXG4gICk6IE9ic2VydmFibGU8YW55PiB7XG4gICAgbGV0IGxvY2FsVmFySGVhZGVycyA9IHRoaXMuZGVmYXVsdEhlYWRlcnM7XG5cbiAgICBsZXQgbG9jYWxWYXJDcmVkZW50aWFsOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gICAgLy8gYXV0aGVudGljYXRpb24gKGNvb2tpZUF1dGgpIHJlcXVpcmVkXG4gICAgbG9jYWxWYXJDcmVkZW50aWFsID0gdGhpcy5jb25maWd1cmF0aW9uLmxvb2t1cENyZWRlbnRpYWwoXCJjb29raWVBdXRoXCIpO1xuICAgIGlmIChsb2NhbFZhckNyZWRlbnRpYWwpIHtcbiAgICB9XG5cbiAgICAvLyBhdXRoZW50aWNhdGlvbiAoand0QXV0aCkgcmVxdWlyZWRcbiAgICBsb2NhbFZhckNyZWRlbnRpYWwgPSB0aGlzLmNvbmZpZ3VyYXRpb24ubG9va3VwQ3JlZGVudGlhbChcImp3dEF1dGhcIik7XG4gICAgaWYgKGxvY2FsVmFyQ3JlZGVudGlhbCkge1xuICAgICAgbG9jYWxWYXJIZWFkZXJzID0gbG9jYWxWYXJIZWFkZXJzLnNldChcbiAgICAgICAgXCJBdXRob3JpemF0aW9uXCIsXG4gICAgICAgIFwiQmVhcmVyIFwiICsgbG9jYWxWYXJDcmVkZW50aWFsLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBsZXQgbG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQ6IHN0cmluZyB8IHVuZGVmaW5lZCA9XG4gICAgICBvcHRpb25zICYmIG9wdGlvbnMuaHR0cEhlYWRlckFjY2VwdDtcbiAgICBpZiAobG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQgPT09IHVuZGVmaW5lZCkge1xuICAgICAgLy8gdG8gZGV0ZXJtaW5lIHRoZSBBY2NlcHQgaGVhZGVyXG4gICAgICBjb25zdCBodHRwSGVhZGVyQWNjZXB0czogc3RyaW5nW10gPSBbXCJhcHBsaWNhdGlvbi9qc29uXCJdO1xuICAgICAgbG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQgPVxuICAgICAgICB0aGlzLmNvbmZpZ3VyYXRpb24uc2VsZWN0SGVhZGVyQWNjZXB0KGh0dHBIZWFkZXJBY2NlcHRzKTtcbiAgICB9XG4gICAgaWYgKGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIGxvY2FsVmFySGVhZGVycyA9IGxvY2FsVmFySGVhZGVycy5zZXQoXG4gICAgICAgIFwiQWNjZXB0XCIsXG4gICAgICAgIGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBsZXQgbG9jYWxWYXJIdHRwQ29udGV4dDogSHR0cENvbnRleHQgfCB1bmRlZmluZWQgPVxuICAgICAgb3B0aW9ucyAmJiBvcHRpb25zLmNvbnRleHQ7XG4gICAgaWYgKGxvY2FsVmFySHR0cENvbnRleHQgPT09IHVuZGVmaW5lZCkge1xuICAgICAgbG9jYWxWYXJIdHRwQ29udGV4dCA9IG5ldyBIdHRwQ29udGV4dCgpO1xuICAgIH1cblxuICAgIGxldCBsb2NhbFZhclRyYW5zZmVyQ2FjaGU6IGJvb2xlYW4gfCB1bmRlZmluZWQgPVxuICAgICAgb3B0aW9ucyAmJiBvcHRpb25zLnRyYW5zZmVyQ2FjaGU7XG4gICAgaWYgKGxvY2FsVmFyVHJhbnNmZXJDYWNoZSA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICBsb2NhbFZhclRyYW5zZmVyQ2FjaGUgPSB0cnVlO1xuICAgIH1cblxuICAgIGxldCByZXNwb25zZVR5cGVfOiBcInRleHRcIiB8IFwianNvblwiIHwgXCJibG9iXCIgPSBcImpzb25cIjtcbiAgICBpZiAobG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQpIHtcbiAgICAgIGlmIChsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZC5zdGFydHNXaXRoKFwidGV4dFwiKSkge1xuICAgICAgICByZXNwb25zZVR5cGVfID0gXCJ0ZXh0XCI7XG4gICAgICB9IGVsc2UgaWYgKFxuICAgICAgICB0aGlzLmNvbmZpZ3VyYXRpb24uaXNKc29uTWltZShsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZClcbiAgICAgICkge1xuICAgICAgICByZXNwb25zZVR5cGVfID0gXCJqc29uXCI7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICByZXNwb25zZVR5cGVfID0gXCJibG9iXCI7XG4gICAgICB9XG4gICAgfVxuXG4gICAgbGV0IGxvY2FsVmFyUGF0aCA9IGAvYXBpL3YxL3Blcm1pc3Npb24tZGF0YWA7XG4gICAgcmV0dXJuIHRoaXMuaHR0cENsaWVudC5yZXF1ZXN0PFBlcm1pc3Npb25EYXRhRHRvPihcbiAgICAgIFwiZ2V0XCIsXG4gICAgICBgJHt0aGlzLmNvbmZpZ3VyYXRpb24uYmFzZVBhdGh9JHtsb2NhbFZhclBhdGh9YCxcbiAgICAgIHtcbiAgICAgICAgY29udGV4dDogbG9jYWxWYXJIdHRwQ29udGV4dCxcbiAgICAgICAgcmVzcG9uc2VUeXBlOiA8YW55PnJlc3BvbnNlVHlwZV8sXG4gICAgICAgIHdpdGhDcmVkZW50aWFsczogdGhpcy5jb25maWd1cmF0aW9uLndpdGhDcmVkZW50aWFscyxcbiAgICAgICAgaGVhZGVyczogbG9jYWxWYXJIZWFkZXJzLFxuICAgICAgICBvYnNlcnZlOiBvYnNlcnZlLFxuICAgICAgICB0cmFuc2ZlckNhY2hlOiBsb2NhbFZhclRyYW5zZmVyQ2FjaGUsXG4gICAgICAgIHJlcG9ydFByb2dyZXNzOiByZXBvcnRQcm9ncmVzcyxcbiAgICAgIH0sXG4gICAgKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVybWlzc2lvbi1kYXRhLWFwaS5zZXJ2aWNlSW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vYXBpL3Blcm1pc3Npb24tZGF0YS1hcGkuc2VydmljZUludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IEh0dHBIZWFkZXJzIH0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vbi9odHRwXCI7XG5cbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tIFwicnhqc1wiO1xuXG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNDAxRHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTQwNUR0byB9IGZyb20gXCIuLi9tb2RlbC9tb2RlbHNcIjtcbmltcG9ydCB7IEVycm9yUmVzcG9uc2U0MDZEdG8gfSBmcm9tIFwiLi4vbW9kZWwvbW9kZWxzXCI7XG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNDE1RHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTUwMER0byB9IGZyb20gXCIuLi9tb2RlbC9tb2RlbHNcIjtcbmltcG9ydCB7IFBlcm1pc3Npb25EYXRhRHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuaW1wb3J0IHsgUGVybWlzc2lvbkRhdGFSZXRyaWV2ZUVycm9yUmVzcG9uc2U0MDBEdG8gfSBmcm9tIFwiLi4vbW9kZWwvbW9kZWxzXCI7XG5cbmltcG9ydCB7IENvbmZpZ3VyYXRpb24gfSBmcm9tIFwiLi4vY29uZmlndXJhdGlvblwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBlcm1pc3Npb25EYXRhQXBpU2VydmljZUludGVyZmFjZSB7XG4gIGRlZmF1bHRIZWFkZXJzOiBIdHRwSGVhZGVycztcbiAgY29uZmlndXJhdGlvbjogQ29uZmlndXJhdGlvbjtcblxuICAvKipcbiAgICpcbiAgICogR2V0IHBlcm1pc3Npb24gZGF0YS5cbiAgICovXG4gIHBlcm1pc3Npb25EYXRhUmV0cmlldmUoXG4gICAgZXh0cmFIdHRwUmVxdWVzdFBhcmFtcz86IGFueSxcbiAgKTogT2JzZXJ2YWJsZTxQZXJtaXNzaW9uRGF0YUR0bz47XG59XG4iXX0=
|
|
@@ -0,0 +1,218 @@
|
|
|
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
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
11
|
+
import { Inject, Injectable, Optional } from "@angular/core";
|
|
12
|
+
import { HttpHeaders, HttpContext, } from "@angular/common/http";
|
|
13
|
+
import { CustomHttpParameterCodec } from "../encoder";
|
|
14
|
+
// @ts-ignore
|
|
15
|
+
import { BASE_PATH } from "../variables";
|
|
16
|
+
import { Configuration } from "../configuration";
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
import * as i1 from "@angular/common/http";
|
|
19
|
+
import * as i2 from "../configuration";
|
|
20
|
+
export class ProfileApiService {
|
|
21
|
+
httpClient;
|
|
22
|
+
basePath = "";
|
|
23
|
+
defaultHeaders = new HttpHeaders();
|
|
24
|
+
configuration = new Configuration();
|
|
25
|
+
encoder;
|
|
26
|
+
constructor(httpClient, basePath, configuration) {
|
|
27
|
+
this.httpClient = httpClient;
|
|
28
|
+
if (configuration) {
|
|
29
|
+
this.configuration = configuration;
|
|
30
|
+
}
|
|
31
|
+
if (typeof this.configuration.basePath !== "string") {
|
|
32
|
+
const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
|
|
33
|
+
if (firstBasePath != undefined) {
|
|
34
|
+
basePath = firstBasePath;
|
|
35
|
+
}
|
|
36
|
+
if (typeof basePath !== "string") {
|
|
37
|
+
basePath = this.basePath;
|
|
38
|
+
}
|
|
39
|
+
this.configuration.basePath = basePath;
|
|
40
|
+
}
|
|
41
|
+
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
|
|
42
|
+
}
|
|
43
|
+
// @ts-ignore
|
|
44
|
+
addToHttpParams(httpParams, value, key) {
|
|
45
|
+
if (typeof value === "object" && value instanceof Date === false) {
|
|
46
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value);
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
|
|
50
|
+
}
|
|
51
|
+
return httpParams;
|
|
52
|
+
}
|
|
53
|
+
addToHttpParamsRecursive(httpParams, value, key) {
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return httpParams;
|
|
56
|
+
}
|
|
57
|
+
if (typeof value === "object") {
|
|
58
|
+
if (Array.isArray(value)) {
|
|
59
|
+
value.forEach((elem) => (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)));
|
|
60
|
+
}
|
|
61
|
+
else if (value instanceof Date) {
|
|
62
|
+
if (key != null) {
|
|
63
|
+
httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
throw Error("key may not be null if value is Date");
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
Object.keys(value).forEach((k) => (httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k)));
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
else if (key != null) {
|
|
74
|
+
httpParams = httpParams.append(key, value);
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
throw Error("key may not be null if value is not object or array");
|
|
78
|
+
}
|
|
79
|
+
return httpParams;
|
|
80
|
+
}
|
|
81
|
+
profileRetrieve(observe = "body", reportProgress = false, options) {
|
|
82
|
+
let localVarHeaders = this.defaultHeaders;
|
|
83
|
+
let localVarCredential;
|
|
84
|
+
// authentication (cookieAuth) required
|
|
85
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
86
|
+
if (localVarCredential) {
|
|
87
|
+
}
|
|
88
|
+
// authentication (jwtAuth) required
|
|
89
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
90
|
+
if (localVarCredential) {
|
|
91
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
92
|
+
}
|
|
93
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
94
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
95
|
+
// to determine the Accept header
|
|
96
|
+
const httpHeaderAccepts = ["application/json"];
|
|
97
|
+
localVarHttpHeaderAcceptSelected =
|
|
98
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
99
|
+
}
|
|
100
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
101
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
102
|
+
}
|
|
103
|
+
let localVarHttpContext = options && options.context;
|
|
104
|
+
if (localVarHttpContext === undefined) {
|
|
105
|
+
localVarHttpContext = new HttpContext();
|
|
106
|
+
}
|
|
107
|
+
let localVarTransferCache = options && options.transferCache;
|
|
108
|
+
if (localVarTransferCache === undefined) {
|
|
109
|
+
localVarTransferCache = true;
|
|
110
|
+
}
|
|
111
|
+
let responseType_ = "json";
|
|
112
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
113
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
114
|
+
responseType_ = "text";
|
|
115
|
+
}
|
|
116
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
117
|
+
responseType_ = "json";
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
responseType_ = "blob";
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
let localVarPath = `/api/v1/profile/`;
|
|
124
|
+
return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
|
|
125
|
+
context: localVarHttpContext,
|
|
126
|
+
responseType: responseType_,
|
|
127
|
+
withCredentials: this.configuration.withCredentials,
|
|
128
|
+
headers: localVarHeaders,
|
|
129
|
+
observe: observe,
|
|
130
|
+
transferCache: localVarTransferCache,
|
|
131
|
+
reportProgress: reportProgress,
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
profileUpdate(requestParameters, observe = "body", reportProgress = false, options) {
|
|
135
|
+
const profileRequestDto = requestParameters?.profileRequestDto;
|
|
136
|
+
if (profileRequestDto === null || profileRequestDto === undefined) {
|
|
137
|
+
throw new Error("Required parameter profileRequestDto was null or undefined when calling profileUpdate.");
|
|
138
|
+
}
|
|
139
|
+
let localVarHeaders = this.defaultHeaders;
|
|
140
|
+
let localVarCredential;
|
|
141
|
+
// authentication (cookieAuth) required
|
|
142
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
143
|
+
if (localVarCredential) {
|
|
144
|
+
}
|
|
145
|
+
// authentication (jwtAuth) required
|
|
146
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
147
|
+
if (localVarCredential) {
|
|
148
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
149
|
+
}
|
|
150
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
151
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
152
|
+
// to determine the Accept header
|
|
153
|
+
const httpHeaderAccepts = ["application/json"];
|
|
154
|
+
localVarHttpHeaderAcceptSelected =
|
|
155
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
156
|
+
}
|
|
157
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
158
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
159
|
+
}
|
|
160
|
+
let localVarHttpContext = options && options.context;
|
|
161
|
+
if (localVarHttpContext === undefined) {
|
|
162
|
+
localVarHttpContext = new HttpContext();
|
|
163
|
+
}
|
|
164
|
+
let localVarTransferCache = options && options.transferCache;
|
|
165
|
+
if (localVarTransferCache === undefined) {
|
|
166
|
+
localVarTransferCache = true;
|
|
167
|
+
}
|
|
168
|
+
// to determine the Content-Type header
|
|
169
|
+
const consumes = [
|
|
170
|
+
"application/json",
|
|
171
|
+
"application/x-www-form-urlencoded",
|
|
172
|
+
"multipart/form-data",
|
|
173
|
+
];
|
|
174
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
175
|
+
if (httpContentTypeSelected !== undefined) {
|
|
176
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
177
|
+
}
|
|
178
|
+
let responseType_ = "json";
|
|
179
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
180
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
181
|
+
responseType_ = "text";
|
|
182
|
+
}
|
|
183
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
184
|
+
responseType_ = "json";
|
|
185
|
+
}
|
|
186
|
+
else {
|
|
187
|
+
responseType_ = "blob";
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
let localVarPath = `/api/v1/profile/`;
|
|
191
|
+
return this.httpClient.request("put", `${this.configuration.basePath}${localVarPath}`, {
|
|
192
|
+
context: localVarHttpContext,
|
|
193
|
+
body: profileRequestDto,
|
|
194
|
+
responseType: responseType_,
|
|
195
|
+
withCredentials: this.configuration.withCredentials,
|
|
196
|
+
headers: localVarHeaders,
|
|
197
|
+
observe: observe,
|
|
198
|
+
transferCache: localVarTransferCache,
|
|
199
|
+
reportProgress: reportProgress,
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.10", ngImport: i0, type: ProfileApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
203
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.10", ngImport: i0, type: ProfileApiService, providedIn: "root" });
|
|
204
|
+
}
|
|
205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.10", ngImport: i0, type: ProfileApiService, decorators: [{
|
|
206
|
+
type: Injectable,
|
|
207
|
+
args: [{
|
|
208
|
+
providedIn: "root",
|
|
209
|
+
}]
|
|
210
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
211
|
+
type: Optional
|
|
212
|
+
}, {
|
|
213
|
+
type: Inject,
|
|
214
|
+
args: [BASE_PATH]
|
|
215
|
+
}] }, { type: i2.Configuration, decorators: [{
|
|
216
|
+
type: Optional
|
|
217
|
+
}] }] });
|
|
218
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZS1hcGkuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2FwaS9wcm9maWxlLWFwaS5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztHQVFHO0FBQ0gsdURBQXVEO0FBRXZELE9BQU8sRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM3RCxPQUFPLEVBRUwsV0FBVyxFQUtYLFdBQVcsR0FDWixNQUFNLHNCQUFzQixDQUFDO0FBQzlCLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLFlBQVksQ0FBQztBQXNCdEQsYUFBYTtBQUNiLE9BQU8sRUFBRSxTQUFTLEVBQXNCLE1BQU0sY0FBYyxDQUFDO0FBQzdELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQVNqRCxNQUFNLE9BQU8saUJBQWlCO0lBT2hCO0lBTkYsUUFBUSxHQUFHLEVBQUUsQ0FBQztJQUNqQixjQUFjLEdBQUcsSUFBSSxXQUFXLEVBQUUsQ0FBQztJQUNuQyxhQUFhLEdBQUcsSUFBSSxhQUFhLEVBQUUsQ0FBQztJQUNwQyxPQUFPLENBQXFCO0lBRW5DLFlBQ1ksVUFBc0IsRUFDRCxRQUEyQixFQUM5QyxhQUE0QjtRQUY5QixlQUFVLEdBQVYsVUFBVSxDQUFZO1FBSWhDLElBQUksYUFBYSxFQUFFLENBQUM7WUFDbEIsSUFBSSxDQUFDLGFBQWEsR0FBRyxhQUFhLENBQUM7UUFDckMsQ0FBQztRQUNELElBQUksT0FBTyxJQUFJLENBQUMsYUFBYSxDQUFDLFFBQVEsS0FBSyxRQUFRLEVBQUUsQ0FBQztZQUNwRCxNQUFNLGFBQWEsR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUN4RSxJQUFJLGFBQWEsSUFBSSxTQUFTLEVB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Q25ELE9BQU8sRUFBRSxlQUFlO1lBQ3hCLE9BQU8sRUFBRSxPQUFPO1lBQ2hCLGFBQWEsRUFBRSxxQkFBcUI7WUFDcEMsY0FBYyxFQUFFLGNBQWM7U0FDL0IsQ0FDRixDQUFDO0lBQ0osQ0FBQzt3R0FsVlUsaUJBQWlCLDRDQVFOLFNBQVM7NEdBUnBCLGlCQUFpQixjQUZoQixNQUFNOzs0RkFFUCxpQkFBaUI7a0JBSDdCLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25COzswQkFTSSxRQUFROzswQkFBSSxNQUFNOzJCQUFDLFNBQVM7OzBCQUM1QixRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBEZWxtYXIgQXBpXG4gKlxuICpcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbi8qIHRzbGludDpkaXNhYmxlOm5vLXVudXNlZC12YXJpYWJsZSBtZW1iZXItb3JkZXJpbmcgKi9cblxuaW1wb3J0IHsgSW5qZWN0LCBJbmplY3RhYmxlLCBPcHRpb25hbCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5pbXBvcnQge1xuICBIdHRwQ2xpZW50LFxuICBIdHRwSGVhZGVycyxcbiAgSHR0cFBhcmFtcyxcbiAgSHR0cFJlc3BvbnNlLFxuICBIdHRwRXZlbnQsXG4gIEh0dHBQYXJhbWV0ZXJDb2RlYyxcbiAgSHR0cENvbnRleHQsXG59IGZyb20gXCJAYW5ndWxhci9jb21tb24vaHR0cFwiO1xuaW1wb3J0IHsgQ3VzdG9tSHR0cFBhcmFtZXRlckNvZGVjIH0gZnJvbSBcIi4uL2VuY29kZXJcIjtcbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tIFwicnhqc1wiO1xuXG4vLyBAdHMtaWdub3JlXG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNDAxRHRvIH0gZnJvbSBcIi4uL21vZGVsL2Vycm9yLXJlc3BvbnNlNDAxLmR0b1wiO1xuLy8gQHRzLWlnbm9yZVxuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTQwNUR0byB9IGZyb20gXCIuLi9tb2RlbC9lcnJvci1yZXNwb25zZTQwNS5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IEVycm9yUmVzcG9uc2U0MDZEdG8gfSBmcm9tIFwiLi4vbW9kZWwvZXJyb3ItcmVzcG9uc2U0MDYuZHRvXCI7XG4vLyBAdHMtaWdub3JlXG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNDE1RHRvIH0gZnJvbSBcIi4uL21vZGVsL2Vycm9yLXJlc3BvbnNlNDE1LmR0b1wiO1xuLy8gQHRzLWlnbm9yZVxuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTUwMER0byB9IGZyb20gXCIuLi9tb2RlbC9lcnJvci1yZXNwb25zZTUwMC5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IFByb2ZpbGVEdG8gfSBmcm9tIFwiLi4vbW9kZWwvcHJvZmlsZS5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IFByb2ZpbGVSZXF1ZXN0RHRvIH0gZnJvbSBcIi4uL21vZGVsL3Byb2ZpbGUtcmVxdWVzdC5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IFByb2ZpbGVSZXRyaWV2ZUVycm9yUmVzcG9uc2U0MDBEdG8gfSBmcm9tIFwiLi4vbW9kZWwvcHJvZmlsZS1yZXRyaWV2ZS1lcnJvci1yZXNwb25zZTQwMC5kdG9cIjtcbi8vIEB0cy1pZ25vcmVcbmltcG9ydCB7IFByb2ZpbGVVcGRhdGVFcnJvclJlc3BvbnNlNDAwRHRvIH0gZnJvbSBcIi4uL21vZGVsL3Byb2ZpbGUtdXBkYXRlLWVycm9yLXJlc3BvbnNlNDAwLmR0b1wiO1xuXG4vLyBAdHMtaWdub3JlXG5pbXBvcnQgeyBCQVNFX1BBVEgsIENPTExFQ1RJT05fRk9STUFUUyB9IGZyb20gXCIuLi92YXJpYWJsZXNcIjtcbmltcG9ydCB7IENvbmZpZ3VyYXRpb24gfSBmcm9tIFwiLi4vY29uZmlndXJhdGlvblwiO1xuaW1wb3J0IHtcbiAgUHJvZmlsZUFwaVNlcnZpY2VJbnRlcmZhY2UsXG4gIFByb2ZpbGVVcGRhdGVSZXF1ZXN0UGFyYW1zLFxufSBmcm9tIFwiLi9wcm9maWxlLWFwaS5zZXJ2aWNlSW50ZXJmYWNlXCI7XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogXCJyb290XCIsXG59KVxuZXhwb3J0IGNsYXNzIFByb2ZpbGVBcGlTZXJ2aWNlIGltcGxlbWVudHMgUHJvZmlsZUFwaVNlcnZpY2VJbnRlcmZhY2Uge1xuICBwcm90ZWN0ZWQgYmFzZVBhdGggPSBcIlwiO1xuICBwdWJsaWMgZGVmYXVsdEhlYWRlcnMgPSBuZXcgSHR0cEhlYWRlcnMoKTtcbiAgcHVibGljIGNvbmZpZ3VyYXRpb24gPSBuZXcgQ29uZmlndXJhdGlvbigpO1xuICBwdWJsaWMgZW5jb2RlcjogSHR0cFBhcmFtZXRlckNvZGVjO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByb3RlY3RlZCBodHRwQ2xpZW50OiBIdHRwQ2xpZW50LFxuICAgIEBPcHRpb25hbCgpIEBJbmplY3QoQkFTRV9QQVRIKSBiYXNlUGF0aDogc3RyaW5nIHwgc3RyaW5nW10sXG4gICAgQE9wdGlvbmFsKCkgY29uZmlndXJhdGlvbjogQ29uZmlndXJhdGlvbixcbiAgKSB7XG4gICAgaWYgKGNvbmZpZ3VyYXRpb24pIHtcbiAgICAgIHRoaXMuY29uZmlndXJhdGlvbiA9IGNvbmZpZ3VyYXRpb247XG4gICAgfVxuICAgIGlmICh0eXBlb2YgdGhpcy5jb25maWd1cmF0aW9uLmJhc2VQYXRoICE9PSBcInN0cmluZ1wiKSB7XG4gICAgICBjb25zdCBmaXJzdEJhc2VQYXRoID0gQXJyYXkuaXNBcnJheShiYXNlUGF0aCkgPyBiYXNlUGF0aFswXSA6IHVuZGVmaW5lZDtcbiAgICAgIGlmIChmaXJzdEJhc2VQYXRoICE9IHVuZGVmaW5lZCkge1xuICAgICAgICBiYXNlUGF0aCA9IGZpcnN0QmFzZVBhdGg7XG4gICAgICB9XG5cbiAgICAgIGlmICh0eXBlb2YgYmFzZVBhdGggIT09IFwic3RyaW5nXCIpIHtcbiAgICAgICAgYmFzZVBhdGggPSB0aGlzLmJhc2VQYXRoO1xuICAgICAgfVxuICAgICAgdGhpcy5jb25maWd1cmF0aW9uLmJhc2VQYXRoID0gYmFzZVBhdGg7XG4gICAgfVxuICAgIHRoaXMuZW5jb2RlciA9IHRoaXMuY29uZmlndXJhdGlvbi5lbmNvZGVyIHx8IG5ldyBDdXN0b21IdHRwUGFyYW1ldGVyQ29kZWMoKTtcbiAgfVxuXG4gIC8vIEB0cy1pZ25vcmVcbiAgcHJpdmF0ZSBhZGRUb0h0dHBQYXJhbXMoXG4gICAgaHR0cFBhcmFtczogSHR0cFBhcmFtcyxcbiAgICB2YWx1ZTogYW55LFxuICAgIGtleT86IHN0cmluZyxcbiAgKTogSHR0cFBhcmFtcyB7XG4gICAgaWYgKHR5cGVvZiB2YWx1ZSA9PT0gXCJvYmplY3RcIiAmJiB2YWx1ZSBpbnN0YW5jZW9mIERhdGUgPT09IGZhbHNlKSB7XG4gICAgICBodHRwUGFyYW1zID0gdGhpcy5hZGRUb0h0dHBQYXJhbXNSZWN1cnNpdmUoaHR0cFBhcmFtcywgdmFsdWUpO1xuICAgIH0gZWxzZSB7XG4gICAgICBodHRwUGFyYW1zID0gdGhpcy5hZGRUb0h0dHBQYXJhbXNSZWN1cnNpdmUoaHR0cFBhcmFtcywgdmFsdWUsIGtleSk7XG4gICAgfVxuICAgIHJldHVybiBodHRwUGFyYW1zO1xuICB9XG5cbiAgcHJpdmF0ZSBhZGRUb0h0dHBQYXJhbXNSZWN1cnNpdmUoXG4gICAgaHR0cFBhcmFtczogSHR0cFBhcmFtcyxcbiAgICB2YWx1ZT86IGFueSxcbiAgICBrZXk/OiBzdHJpbmcsXG4gICk6IEh0dHBQYXJhbXMge1xuICAgIGlmICh2YWx1ZSA9PSBudWxsKSB7XG4gICAgICByZXR1cm4gaHR0cFBhcmFtcztcbiAgICB9XG5cbiAgICBpZiAodHlwZW9mIHZhbHVlID09PSBcIm9iamVjdFwiKSB7XG4gICAgICBpZiAoQXJyYXkuaXNBcnJheSh2YWx1ZSkpIHtcbiAgICAgICAgKHZhbHVlIGFzIGFueVtdKS5mb3JFYWNoKFxuICAgICAgICAgIChlbGVtKSA9PlxuICAgICAgICAgICAgKGh0dHBQYXJhbXMgPSB0aGlzLmFkZFRvSHR0cFBhcmFtc1JlY3Vyc2l2ZShodHRwUGFyYW1zLCBlbGVtLCBrZXkpKSxcbiAgICAgICAgKTtcbiAgICAgIH0gZWxzZSBpZiAodmFsdWUgaW5zdGFuY2VvZiBEYXRlKSB7XG4gICAgICAgIGlmIChrZXkgIT0gbnVsbCkge1xuICAgICAgICAgIGh0dHBQYXJhbXMgPSBodHRwUGFyYW1zLmFwcGVuZChcbiAgICAgICAgICAgIGtleSxcbiAgICAgICAgICAgICh2YWx1ZSBhcyBEYXRlKS50b0lTT1N0cmluZygpLnN1YnN0cmluZygwLCAxMCksXG4gICAgICAgICAgKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICB0aHJvdyBFcnJvcihcImtleSBtYXkgbm90IGJlIG51bGwgaWYgdmFsdWUgaXMgRGF0ZVwiKTtcbiAgICAgICAgfVxuICAgICAgfSBlbHNlIHtcbiAgICAgICAgT2JqZWN0LmtleXModmFsdWUpLmZvckVhY2goXG4gICAgICAgICAgKGspID0+XG4gICAgICAgICAgICAoaHR0cFBhcmFtcyA9IHRoaXMuYWRkVG9IdHRwUGFyYW1zUmVjdXJzaXZlKFxuICAgICAgICAgICAgICBodHRwUGFyYW1zLFxuICAgICAgICAgICAgICB2YWx1ZVtrXSxcbiAgICAgICAgICAgICAga2V5ICE9IG51bGwgPyBgJHtrZXl9LiR7a31gIDogayxcbiAgICAgICAgICAgICkpLFxuICAgICAgICApO1xuICAgICAgfVxuICAgIH0gZWxzZSBpZiAoa2V5ICE9IG51bGwpIHtcbiAgICAgIGh0dHBQYXJhbXMgPSBodHRwUGFyYW1zLmFwcGVuZChrZXksIHZhbHVlKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhyb3cgRXJyb3IoXCJrZXkgbWF5IG5vdCBiZSBudWxsIGlmIHZhbHVlIGlzIG5vdCBvYmplY3Qgb3IgYXJyYXlcIik7XG4gICAgfVxuICAgIHJldHVybiBodHRwUGFyYW1zO1xuICB9XG5cbiAgLyoqXG4gICAqIFZpZXdzZXQgZm9yIG1hbmFnaW5nIGN1cnJlbnQgdXNlci5cbiAgICogQHBhcmFtIG9ic2VydmUgc2V0IHdoZXRoZXIgb3Igbm90IHRvIHJldHVybiB0aGUgZGF0YSBPYnNlcnZhYmxlIGFzIHRoZSBib2R5LCByZXNwb25zZSBvciBldmVudHMuIGRlZmF1bHRzIHRvIHJldHVybmluZyB0aGUgYm9keS5cbiAgICogQHBhcmFtIHJlcG9ydFByb2dyZXNzIGZsYWcgdG8gcmVwb3J0IHJlcXVlc3QgYW5kIHJlc3BvbnNlIHByb2dyZXNzLlxuICAgKi9cbiAgcHVibGljIHByb2ZpbGVSZXRyaWV2ZShcbiAgICBvYnNlcnZlPzogXCJib2R5XCIsXG4gICAgcmVwb3J0UHJvZ3Jlc3M/OiBib29sZWFuLFxuICAgIG9wdGlvbnM/OiB7XG4gICAgICBodHRwSGVhZGVyQWNjZXB0PzogXCJhcHBsaWNhdGlvbi9qc29uXCI7XG4gICAgICBjb250ZXh0PzogSHR0cENvbnRleHQ7XG4gICAgICB0cmFuc2ZlckNhY2hlPzogYm9vbGVhbjtcbiAgICB9LFxuICApOiBPYnNlcnZhYmxlPFByb2ZpbGVEdG8+O1xuICBwdWJsaWMgcHJvZmlsZVJldHJpZXZlKFxuICAgIG9ic2VydmU/OiBcInJlc3BvbnNlXCIsXG4gICAgcmVwb3J0UHJvZ3Jlc3M/OiBib29sZWFuLFxuICAgIG9wdGlvbnM/OiB7XG4gICAgICBodHRwSGVhZGVyQWNjZXB0PzogXCJhcHBsaWNhdGlvbi9qc29uXCI7XG4gICAgICBjb250ZXh0PzogSHR0cENvbnRleHQ7XG4gICAgICB0cmFuc2ZlckNhY2hlPzogYm9vbGVhbjtcbiAgICB9LFxuICApOiBPYnNlcnZhYmxlPEh0dHBSZXNwb25zZTxQcm9maWxlRHRvPj47XG4gIHB1YmxpYyBwcm9maWxlUmV0cmlldmUoXG4gICAgb2JzZXJ2ZT86IFwiZXZlbnRzXCIsXG4gICAgcmVwb3J0UHJvZ3Jlc3M/OiBib29sZWFuLFxuICAgIG9wdGlvbnM/OiB7XG4gICAgICBodHRwSGVhZGVyQWNjZXB0PzogXCJhcHBsaWNhdGlvbi9qc29uXCI7XG4gICAgICBjb250ZXh0PzogSHR0cENvbnRleHQ7XG4gICAgICB0cmFuc2ZlckNhY2hlPzogYm9vbGVhbjtcbiAgICB9LFxuICApOiBPYnNlcnZhYmxlPEh0dHBFdmVudDxQcm9maWxlRHRvPj47XG4gIHB1YmxpYyBwcm9maWxlUmV0cmlldmUoXG4gICAgb2JzZXJ2ZTogYW55ID0gXCJib2R5XCIsXG4gICAgcmVwb3J0UHJvZ3Jlc3M6IGJvb2xlYW4gPSBmYWxzZSxcbiAgICBvcHRpb25zPzoge1xuICAgICAgaHR0cEhlYWRlckFjY2VwdD86IFwiYXBwbGljYXRpb24vanNvblwiO1xuICAgICAgY29udGV4dD86IEh0dHBDb250ZXh0O1xuICAgICAgdHJhbnNmZXJDYWNoZT86IGJvb2xlYW47XG4gICAgfSxcbiAgKTogT2JzZXJ2YWJsZTxhbnk+IHtcbiAgICBsZXQgbG9jYWxWYXJIZWFkZXJzID0gdGhpcy5kZWZhdWx0SGVhZGVycztcblxuICAgIGxldCBsb2NhbFZhckNyZWRlbnRpYWw6IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgICAvLyBhdXRoZW50aWNhdGlvbiAoY29va2llQXV0aCkgcmVxdWlyZWRcbiAgICBsb2NhbFZhckNyZWRlbnRpYWwgPSB0aGlzLmNvbmZpZ3VyYXRpb24ubG9va3VwQ3JlZGVudGlhbChcImNvb2tpZUF1dGhcIik7XG4gICAgaWYgKGxvY2FsVmFyQ3JlZGVudGlhbCkge1xuICAgIH1cblxuICAgIC8vIGF1dGhlbnRpY2F0aW9uIChqd3RBdXRoKSByZXF1aXJlZFxuICAgIGxvY2FsVmFyQ3JlZGVudGlhbCA9IHRoaXMuY29uZmlndXJhdGlvbi5sb29rdXBDcmVkZW50aWFsKFwiand0QXV0aFwiKTtcbiAgICBpZiAobG9jYWxWYXJDcmVkZW50aWFsKSB7XG4gICAgICBsb2NhbFZhckhlYWRlcnMgPSBsb2NhbFZhckhlYWRlcnMuc2V0KFxuICAgICAgICBcIkF1dGhvcml6YXRpb25cIixcbiAgICAgICAgXCJCZWFyZXIgXCIgKyBsb2NhbFZhckNyZWRlbnRpYWwsXG4gICAgICApO1xuICAgIH1cblxuICAgIGxldCBsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZDogc3RyaW5nIHwgdW5kZWZpbmVkID1cbiAgICAgIG9wdGlvbnMgJiYgb3B0aW9ucy5odHRwSGVhZGVyQWNjZXB0O1xuICAgIGlmIChsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZCA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICAvLyB0byBkZXRlcm1pbmUgdGhlIEFjY2VwdCBoZWFkZXJcbiAgICAgIGNvbnN0IGh0dHBIZWFkZXJBY2NlcHRzOiBzdHJpbmdbXSA9IFtcImFwcGxpY2F0aW9uL2pzb25cIl07XG4gICAgICBsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZCA9XG4gICAgICAgIHRoaXMuY29uZmlndXJhdGlvbi5zZWxlY3RIZWFkZXJBY2NlcHQoaHR0cEhlYWRlckFjY2VwdHMpO1xuICAgIH1cbiAgICBpZiAobG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQgIT09IHVuZGVmaW5lZCkge1xuICAgICAgbG9jYWxWYXJIZWFkZXJzID0gbG9jYWxWYXJIZWFkZXJzLnNldChcbiAgICAgICAgXCJBY2NlcHRcIixcbiAgICAgICAgbG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQsXG4gICAgICApO1xuICAgIH1cblxuICAgIGxldCBsb2NhbFZhckh0dHBDb250ZXh0OiBIdHRwQ29udGV4dCB8IHVuZGVmaW5lZCA9XG4gICAgICBvcHRpb25zICYmIG9wdGlvbnMuY29udGV4dDtcbiAgICBpZiAobG9jYWxWYXJIdHRwQ29udGV4dCA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICBsb2NhbFZhckh0dHBDb250ZXh0ID0gbmV3IEh0dHBDb250ZXh0KCk7XG4gICAgfVxuXG4gICAgbGV0IGxvY2FsVmFyVHJhbnNmZXJDYWNoZTogYm9vbGVhbiB8IHVuZGVmaW5lZCA9XG4gICAgICBvcHRpb25zICYmIG9wdGlvbnMudHJhbnNmZXJDYWNoZTtcbiAgICBpZiAobG9jYWxWYXJUcmFuc2ZlckNhY2hlID09PSB1bmRlZmluZWQpIHtcbiAgICAgIGxvY2FsVmFyVHJhbnNmZXJDYWNoZSA9IHRydWU7XG4gICAgfVxuXG4gICAgbGV0IHJlc3BvbnNlVHlwZV86IFwidGV4dFwiIHwgXCJqc29uXCIgfCBcImJsb2JcIiA9IFwianNvblwiO1xuICAgIGlmIChsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZCkge1xuICAgICAgaWYgKGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkLnN0YXJ0c1dpdGgoXCJ0ZXh0XCIpKSB7XG4gICAgICAgIHJlc3BvbnNlVHlwZV8gPSBcInRleHRcIjtcbiAgICAgIH0gZWxzZSBpZiAoXG4gICAgICAgIHRoaXMuY29uZmlndXJhdGlvbi5pc0pzb25NaW1lKGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkKVxuICAgICAgKSB7XG4gICAgICAgIHJlc3BvbnNlVHlwZV8gPSBcImpzb25cIjtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHJlc3BvbnNlVHlwZV8gPSBcImJsb2JcIjtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBsZXQgbG9jYWxWYXJQYXRoID0gYC9hcGkvdjEvcHJvZmlsZS9gO1xuICAgIHJldHVybiB0aGlzLmh0dHBDbGllbnQucmVxdWVzdDxQcm9maWxlRHRvPihcbiAgICAgIFwiZ2V0XCIsXG4gICAgICBgJHt0aGlzLmNvbmZpZ3VyYXRpb24uYmFzZVBhdGh9JHtsb2NhbFZhclBhdGh9YCxcbiAgICAgIHtcbiAgICAgICAgY29udGV4dDogbG9jYWxWYXJIdHRwQ29udGV4dCxcbiAgICAgICAgcmVzcG9uc2VUeXBlOiA8YW55PnJlc3BvbnNlVHlwZV8sXG4gICAgICAgIHdpdGhDcmVkZW50aWFsczogdGhpcy5jb25maWd1cmF0aW9uLndpdGhDcmVkZW50aWFscyxcbiAgICAgICAgaGVhZGVyczogbG9jYWxWYXJIZWFkZXJzLFxuICAgICAgICBvYnNlcnZlOiBvYnNlcnZlLFxuICAgICAgICB0cmFuc2ZlckNhY2hlOiBsb2NhbFZhclRyYW5zZmVyQ2FjaGUsXG4gICAgICAgIHJlcG9ydFByb2dyZXNzOiByZXBvcnRQcm9ncmVzcyxcbiAgICAgIH0sXG4gICAgKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBWaWV3c2V0IGZvciBtYW5hZ2luZyBjdXJyZW50IHVzZXIuXG4gICAqIEBwYXJhbSByZXF1ZXN0UGFyYW1ldGVyc1xuICAgKiBAcGFyYW0gb2JzZXJ2ZSBzZXQgd2hldGhlciBvciBub3QgdG8gcmV0dXJuIHRoZSBkYXRhIE9ic2VydmFibGUgYXMgdGhlIGJvZHksIHJlc3BvbnNlIG9yIGV2ZW50cy4gZGVmYXVsdHMgdG8gcmV0dXJuaW5nIHRoZSBib2R5LlxuICAgKiBAcGFyYW0gcmVwb3J0UHJvZ3Jlc3MgZmxhZyB0byByZXBvcnQgcmVxdWVzdCBhbmQgcmVzcG9uc2UgcHJvZ3Jlc3MuXG4gICAqL1xuICBwdWJsaWMgcHJvZmlsZVVwZGF0ZShcbiAgICByZXF1ZXN0UGFyYW1ldGVycz86IFByb2ZpbGVVcGRhdGVSZXF1ZXN0UGFyYW1zLFxuICAgIG9ic2VydmU/OiBcImJvZHlcIixcbiAgICByZXBvcnRQcm9ncmVzcz86IGJvb2xlYW4sXG4gICAgb3B0aW9ucz86IHtcbiAgICAgIGh0dHBIZWFkZXJBY2NlcHQ/OiBcImFwcGxpY2F0aW9uL2pzb25cIjtcbiAgICAgIGNvbnRleHQ/OiBIdHRwQ29udGV4dDtcbiAgICAgIHRyYW5zZmVyQ2FjaGU/OiBib29sZWFuO1xuICAgIH0sXG4gICk6IE9ic2VydmFibGU8UHJvZmlsZUR0bz47XG4gIHB1YmxpYyBwcm9maWxlVXBkYXRlKFxuICAgIHJlcXVlc3RQYXJhbWV0ZXJzPzogUHJvZmlsZVVwZGF0ZVJlcXVlc3RQYXJhbXMsXG4gICAgb2JzZXJ2ZT86IFwicmVzcG9uc2VcIixcbiAgICByZXBvcnRQcm9ncmVzcz86IGJvb2xlYW4sXG4gICAgb3B0aW9ucz86IHtcbiAgICAgIGh0dHBIZWFkZXJBY2NlcHQ/OiBcImFwcGxpY2F0aW9uL2pzb25cIjtcbiAgICAgIGNvbnRleHQ/OiBIdHRwQ29udGV4dDtcbiAgICAgIHRyYW5zZmVyQ2FjaGU/OiBib29sZWFuO1xuICAgIH0sXG4gICk6IE9ic2VydmFibGU8SHR0cFJlc3BvbnNlPFByb2ZpbGVEdG8+PjtcbiAgcHVibGljIHByb2ZpbGVVcGRhdGUoXG4gICAgcmVxdWVzdFBhcmFtZXRlcnM/OiBQcm9maWxlVXBkYXRlUmVxdWVzdFBhcmFtcyxcbiAgICBvYnNlcnZlPzogXCJldmVudHNcIixcbiAgICByZXBvcnRQcm9ncmVzcz86IGJvb2xlYW4sXG4gICAgb3B0aW9ucz86IHtcbiAgICAgIGh0dHBIZWFkZXJBY2NlcHQ/OiBcImFwcGxpY2F0aW9uL2pzb25cIjtcbiAgICAgIGNvbnRleHQ/OiBIdHRwQ29udGV4dDtcbiAgICAgIHRyYW5zZmVyQ2FjaGU/OiBib29sZWFuO1xuICAgIH0sXG4gICk6IE9ic2VydmFibGU8SHR0cEV2ZW50PFByb2ZpbGVEdG8+PjtcbiAgcHVibGljIHByb2ZpbGVVcGRhdGUoXG4gICAgcmVxdWVzdFBhcmFtZXRlcnM/OiBQcm9maWxlVXBkYXRlUmVxdWVzdFBhcmFtcyxcbiAgICBvYnNlcnZlOiBhbnkgPSBcImJvZHlcIixcbiAgICByZXBvcnRQcm9ncmVzczogYm9vbGVhbiA9IGZhbHNlLFxuICAgIG9wdGlvbnM/OiB7XG4gICAgICBodHRwSGVhZGVyQWNjZXB0PzogXCJhcHBsaWNhdGlvbi9qc29uXCI7XG4gICAgICBjb250ZXh0PzogSHR0cENvbnRleHQ7XG4gICAgICB0cmFuc2ZlckNhY2hlPzogYm9vbGVhbjtcbiAgICB9LFxuICApOiBPYnNlcnZhYmxlPGFueT4ge1xuICAgIGNvbnN0IHByb2ZpbGVSZXF1ZXN0RHRvID0gcmVxdWVzdFBhcmFtZXRlcnM/LnByb2ZpbGVSZXF1ZXN0RHRvO1xuICAgIGlmIChwcm9maWxlUmVxdWVzdER0byA9PT0gbnVsbCB8fCBwcm9maWxlUmVxdWVzdER0byA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiUmVxdWlyZWQgcGFyYW1ldGVyIHByb2ZpbGVSZXF1ZXN0RHRvIHdhcyBudWxsIG9yIHVuZGVmaW5lZCB3aGVuIGNhbGxpbmcgcHJvZmlsZVVwZGF0ZS5cIixcbiAgICAgICk7XG4gICAgfVxuXG4gICAgbGV0IGxvY2FsVmFySGVhZGVycyA9IHRoaXMuZGVmYXVsdEhlYWRlcnM7XG5cbiAgICBsZXQgbG9jYWxWYXJDcmVkZW50aWFsOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gICAgLy8gYXV0aGVudGljYXRpb24gKGNvb2tpZUF1dGgpIHJlcXVpcmVkXG4gICAgbG9jYWxWYXJDcmVkZW50aWFsID0gdGhpcy5jb25maWd1cmF0aW9uLmxvb2t1cENyZWRlbnRpYWwoXCJjb29raWVBdXRoXCIpO1xuICAgIGlmIChsb2NhbFZhckNyZWRlbnRpYWwpIHtcbiAgICB9XG5cbiAgICAvLyBhdXRoZW50aWNhdGlvbiAoand0QXV0aCkgcmVxdWlyZWRcbiAgICBsb2NhbFZhckNyZWRlbnRpYWwgPSB0aGlzLmNvbmZpZ3VyYXRpb24ubG9va3VwQ3JlZGVudGlhbChcImp3dEF1dGhcIik7XG4gICAgaWYgKGxvY2FsVmFyQ3JlZGVudGlhbCkge1xuICAgICAgbG9jYWxWYXJIZWFkZXJzID0gbG9jYWxWYXJIZWFkZXJzLnNldChcbiAgICAgICAgXCJBdXRob3JpemF0aW9uXCIsXG4gICAgICAgIFwiQmVhcmVyIFwiICsgbG9jYWxWYXJDcmVkZW50aWFsLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBsZXQgbG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQ6IHN0cmluZyB8IHVuZGVmaW5lZCA9XG4gICAgICBvcHRpb25zICYmIG9wdGlvbnMuaHR0cEhlYWRlckFjY2VwdDtcbiAgICBpZiAobG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQgPT09IHVuZGVmaW5lZCkge1xuICAgICAgLy8gdG8gZGV0ZXJtaW5lIHRoZSBBY2NlcHQgaGVhZGVyXG4gICAgICBjb25zdCBodHRwSGVhZGVyQWNjZXB0czogc3RyaW5nW10gPSBbXCJhcHBsaWNhdGlvbi9qc29uXCJdO1xuICAgICAgbG9jYWxWYXJIdHRwSGVhZGVyQWNjZXB0U2VsZWN0ZWQgPVxuICAgICAgICB0aGlzLmNvbmZpZ3VyYXRpb24uc2VsZWN0SGVhZGVyQWNjZXB0KGh0dHBIZWFkZXJBY2NlcHRzKTtcbiAgICB9XG4gICAgaWYgKGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIGxvY2FsVmFySGVhZGVycyA9IGxvY2FsVmFySGVhZGVycy5zZXQoXG4gICAgICAgIFwiQWNjZXB0XCIsXG4gICAgICAgIGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBsZXQgbG9jYWxWYXJIdHRwQ29udGV4dDogSHR0cENvbnRleHQgfCB1bmRlZmluZWQgPVxuICAgICAgb3B0aW9ucyAmJiBvcHRpb25zLmNvbnRleHQ7XG4gICAgaWYgKGxvY2FsVmFySHR0cENvbnRleHQgPT09IHVuZGVmaW5lZCkge1xuICAgICAgbG9jYWxWYXJIdHRwQ29udGV4dCA9IG5ldyBIdHRwQ29udGV4dCgpO1xuICAgIH1cblxuICAgIGxldCBsb2NhbFZhclRyYW5zZmVyQ2FjaGU6IGJvb2xlYW4gfCB1bmRlZmluZWQgPVxuICAgICAgb3B0aW9ucyAmJiBvcHRpb25zLnRyYW5zZmVyQ2FjaGU7XG4gICAgaWYgKGxvY2FsVmFyVHJhbnNmZXJDYWNoZSA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICBsb2NhbFZhclRyYW5zZmVyQ2FjaGUgPSB0cnVlO1xuICAgIH1cblxuICAgIC8vIHRvIGRldGVybWluZSB0aGUgQ29udGVudC1UeXBlIGhlYWRlclxuICAgIGNvbnN0IGNvbnN1bWVzOiBzdHJpbmdbXSA9IFtcbiAgICAgIFwiYXBwbGljYXRpb24vanNvblwiLFxuICAgICAgXCJhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWRcIixcbiAgICAgIFwibXVsdGlwYXJ0L2Zvcm0tZGF0YVwiLFxuICAgIF07XG4gICAgY29uc3QgaHR0cENvbnRlbnRUeXBlU2VsZWN0ZWQ6IHN0cmluZyB8IHVuZGVmaW5lZCA9XG4gICAgICB0aGlzLmNvbmZpZ3VyYXRpb24uc2VsZWN0SGVhZGVyQ29udGVudFR5cGUoY29uc3VtZXMpO1xuICAgIGlmIChodHRwQ29udGVudFR5cGVTZWxlY3RlZCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICBsb2NhbFZhckhlYWRlcnMgPSBsb2NhbFZhckhlYWRlcnMuc2V0KFxuICAgICAgICBcIkNvbnRlbnQtVHlwZVwiLFxuICAgICAgICBodHRwQ29udGVudFR5cGVTZWxlY3RlZCxcbiAgICAgICk7XG4gICAgfVxuXG4gICAgbGV0IHJlc3BvbnNlVHlwZV86IFwidGV4dFwiIHwgXCJqc29uXCIgfCBcImJsb2JcIiA9IFwianNvblwiO1xuICAgIGlmIChsb2NhbFZhckh0dHBIZWFkZXJBY2NlcHRTZWxlY3RlZCkge1xuICAgICAgaWYgKGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkLnN0YXJ0c1dpdGgoXCJ0ZXh0XCIpKSB7XG4gICAgICAgIHJlc3BvbnNlVHlwZV8gPSBcInRleHRcIjtcbiAgICAgIH0gZWxzZSBpZiAoXG4gICAgICAgIHRoaXMuY29uZmlndXJhdGlvbi5pc0pzb25NaW1lKGxvY2FsVmFySHR0cEhlYWRlckFjY2VwdFNlbGVjdGVkKVxuICAgICAgKSB7XG4gICAgICAgIHJlc3BvbnNlVHlwZV8gPSBcImpzb25cIjtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHJlc3BvbnNlVHlwZV8gPSBcImJsb2JcIjtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBsZXQgbG9jYWxWYXJQYXRoID0gYC9hcGkvdjEvcHJvZmlsZS9gO1xuICAgIHJldHVybiB0aGlzLmh0dHBDbGllbnQucmVxdWVzdDxQcm9maWxlRHRvPihcbiAgICAgIFwicHV0XCIsXG4gICAgICBgJHt0aGlzLmNvbmZpZ3VyYXRpb24uYmFzZVBhdGh9JHtsb2NhbFZhclBhdGh9YCxcbiAgICAgIHtcbiAgICAgICAgY29udGV4dDogbG9jYWxWYXJIdHRwQ29udGV4dCxcbiAgICAgICAgYm9keTogcHJvZmlsZVJlcXVlc3REdG8sXG4gICAgICAgIHJlc3BvbnNlVHlwZTogPGFueT5yZXNwb25zZVR5cGVfLFxuICAgICAgICB3aXRoQ3JlZGVudGlhbHM6IHRoaXMuY29uZmlndXJhdGlvbi53aXRoQ3JlZGVudGlhbHMsXG4gICAgICAgIGhlYWRlcnM6IGxvY2FsVmFySGVhZGVycyxcbiAgICAgICAgb2JzZXJ2ZTogb2JzZXJ2ZSxcbiAgICAgICAgdHJhbnNmZXJDYWNoZTogbG9jYWxWYXJUcmFuc2ZlckNhY2hlLFxuICAgICAgICByZXBvcnRQcm9ncmVzczogcmVwb3J0UHJvZ3Jlc3MsXG4gICAgICB9LFxuICAgICk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZS1hcGkuc2VydmljZUludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2FwaS9wcm9maWxlLWFwaS5zZXJ2aWNlSW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIERlbG1hciBBcGlcbiAqXG4gKlxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuaW1wb3J0IHsgSHR0cEhlYWRlcnMgfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uL2h0dHBcIjtcblxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gXCJyeGpzXCI7XG5cbmltcG9ydCB7IEVycm9yUmVzcG9uc2U0MDFEdG8gfSBmcm9tIFwiLi4vbW9kZWwvbW9kZWxzXCI7XG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNDA1RHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuaW1wb3J0IHsgRXJyb3JSZXNwb25zZTQwNkR0byB9IGZyb20gXCIuLi9tb2RlbC9tb2RlbHNcIjtcbmltcG9ydCB7IEVycm9yUmVzcG9uc2U0MTVEdG8gfSBmcm9tIFwiLi4vbW9kZWwvbW9kZWxzXCI7XG5pbXBvcnQgeyBFcnJvclJlc3BvbnNlNTAwRHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuaW1wb3J0IHsgUHJvZmlsZUR0byB9IGZyb20gXCIuLi9tb2RlbC9tb2RlbHNcIjtcbmltcG9ydCB7IFByb2ZpbGVSZXF1ZXN0RHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuaW1wb3J0IHsgUHJvZmlsZVJldHJpZXZlRXJyb3JSZXNwb25zZTQwMER0byB9IGZyb20gXCIuLi9tb2RlbC9tb2RlbHNcIjtcbmltcG9ydCB7IFByb2ZpbGVVcGRhdGVFcnJvclJlc3BvbnNlNDAwRHRvIH0gZnJvbSBcIi4uL21vZGVsL21vZGVsc1wiO1xuXG5pbXBvcnQgeyBDb25maWd1cmF0aW9uIH0gZnJvbSBcIi4uL2NvbmZpZ3VyYXRpb25cIjtcblxuZXhwb3J0IGludGVyZmFjZSBQcm9maWxlVXBkYXRlUmVxdWVzdFBhcmFtcyB7XG4gIHByb2ZpbGVSZXF1ZXN0RHRvOiBQcm9maWxlUmVxdWVzdER0bztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBQcm9maWxlQXBpU2VydmljZUludGVyZmFjZSB7XG4gIGRlZmF1bHRIZWFkZXJzOiBIdHRwSGVhZGVycztcbiAgY29uZmlndXJhdGlvbjogQ29uZmlndXJhdGlvbjtcblxuICAvKipcbiAgICpcbiAgICogVmlld3NldCBmb3IgbWFuYWdpbmcgY3VycmVudCB1c2VyLlxuICAgKi9cbiAgcHJvZmlsZVJldHJpZXZlKGV4dHJhSHR0cFJlcXVlc3RQYXJhbXM/OiBhbnkpOiBPYnNlcnZhYmxlPFByb2ZpbGVEdG8+O1xuXG4gIC8qKlxuICAgKlxuICAgKiBWaWV3c2V0IGZvciBtYW5hZ2luZyBjdXJyZW50IHVzZXIuXG4gICAqIEBwYXJhbSByZXF1ZXN0UGFyYW1ldGVyc1xuICAgKi9cbiAgcHJvZmlsZVVwZGF0ZShcbiAgICByZXF1ZXN0UGFyYW1ldGVyczogUHJvZmlsZVVwZGF0ZVJlcXVlc3RQYXJhbXMsXG4gICAgZXh0cmFIdHRwUmVxdWVzdFBhcmFtcz86IGFueSxcbiAgKTogT2JzZXJ2YWJsZTxQcm9maWxlRHRvPjtcbn1cbiJdfQ==
|