@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.
Files changed (1285) hide show
  1. package/README.md +5 -0
  2. package/api/api.d.ts +73 -0
  3. package/api/branch-periods-api.service.d.ts +124 -0
  4. package/api/branch-periods-api.serviceInterface.d.ts +68 -0
  5. package/api/branches-api.service.d.ts +146 -0
  6. package/api/branches-api.serviceInterface.d.ts +94 -0
  7. package/api/departments-api.service.d.ts +124 -0
  8. package/api/departments-api.serviceInterface.d.ts +74 -0
  9. package/api/dismissal-reasons-api.service.d.ts +124 -0
  10. package/api/dismissal-reasons-api.serviceInterface.d.ts +74 -0
  11. package/api/jira-client-api.service.d.ts +39 -0
  12. package/api/jira-client-api.serviceInterface.d.ts +27 -0
  13. package/api/jira-instances-api.service.d.ts +61 -0
  14. package/api/jira-instances-api.serviceInterface.d.ts +39 -0
  15. package/api/locations-api.service.d.ts +124 -0
  16. package/api/locations-api.serviceInterface.d.ts +74 -0
  17. package/api/permission-data-api.service.d.ts +38 -0
  18. package/api/permission-data-api.serviceInterface.d.ts +22 -0
  19. package/api/profile-api.service.d.ts +59 -0
  20. package/api/profile-api.serviceInterface.d.ts +32 -0
  21. package/api/projects-api.service.d.ts +61 -0
  22. package/api/projects-api.serviceInterface.d.ts +39 -0
  23. package/api/roles-api.service.d.ts +124 -0
  24. package/api/roles-api.serviceInterface.d.ts +72 -0
  25. package/api/s3-api.service.d.ts +39 -0
  26. package/api/s3-api.serviceInterface.d.ts +27 -0
  27. package/api/search-periods-api.service.d.ts +39 -0
  28. package/api/search-periods-api.serviceInterface.d.ts +37 -0
  29. package/api/sso-api.service.d.ts +82 -0
  30. package/api/sso-api.serviceInterface.d.ts +48 -0
  31. package/api/token-api.service.d.ts +60 -0
  32. package/api/token-api.serviceInterface.d.ts +37 -0
  33. package/api/user-capacities-api.service.d.ts +104 -0
  34. package/api/user-capacities-api.serviceInterface.d.ts +78 -0
  35. package/api/user-logins-api.service.d.ts +82 -0
  36. package/api/user-logins-api.serviceInterface.d.ts +58 -0
  37. package/api/user-periods-api.service.d.ts +61 -0
  38. package/api/user-periods-api.serviceInterface.d.ts +39 -0
  39. package/api/user-timezone-setting-api.service.d.ts +59 -0
  40. package/api/user-timezone-setting-api.serviceInterface.d.ts +32 -0
  41. package/api/user-timezones-api.service.d.ts +61 -0
  42. package/api/user-timezones-api.serviceInterface.d.ts +42 -0
  43. package/api/users-api.service.d.ts +103 -0
  44. package/api/users-api.serviceInterface.d.ts +71 -0
  45. package/api/vendors-api.service.d.ts +124 -0
  46. package/api/vendors-api.serviceInterface.d.ts +70 -0
  47. package/api/who-am-i-api.service.d.ts +38 -0
  48. package/api/who-am-i-api.serviceInterface.d.ts +22 -0
  49. package/api/work-types-api.service.d.ts +124 -0
  50. package/api/work-types-api.serviceInterface.d.ts +74 -0
  51. package/api.module.d.ts +11 -0
  52. package/configuration.d.ts +104 -0
  53. package/encoder.d.ts +11 -0
  54. package/esm2022/api/api.mjs +99 -0
  55. package/esm2022/api/branch-periods-api.service.mjs +424 -0
  56. package/esm2022/api/branch-periods-api.serviceInterface.mjs +2 -0
  57. package/esm2022/api/branches-api.service.mjs +545 -0
  58. package/esm2022/api/branches-api.serviceInterface.mjs +2 -0
  59. package/esm2022/api/departments-api.service.mjs +446 -0
  60. package/esm2022/api/departments-api.serviceInterface.mjs +2 -0
  61. package/esm2022/api/dismissal-reasons-api.service.mjs +448 -0
  62. package/esm2022/api/dismissal-reasons-api.serviceInterface.mjs +2 -0
  63. package/esm2022/api/jira-client-api.service.mjs +166 -0
  64. package/esm2022/api/jira-client-api.serviceInterface.mjs +2 -0
  65. package/esm2022/api/jira-instances-api.service.mjs +225 -0
  66. package/esm2022/api/jira-instances-api.serviceInterface.mjs +2 -0
  67. package/esm2022/api/locations-api.service.mjs +446 -0
  68. package/esm2022/api/locations-api.serviceInterface.mjs +2 -0
  69. package/esm2022/api/permission-data-api.service.mjs +150 -0
  70. package/esm2022/api/permission-data-api.serviceInterface.mjs +2 -0
  71. package/esm2022/api/profile-api.service.mjs +218 -0
  72. package/esm2022/api/profile-api.serviceInterface.mjs +2 -0
  73. package/esm2022/api/projects-api.service.mjs +225 -0
  74. package/esm2022/api/projects-api.serviceInterface.mjs +2 -0
  75. package/esm2022/api/roles-api.service.mjs +438 -0
  76. package/esm2022/api/roles-api.serviceInterface.mjs +2 -0
  77. package/esm2022/api/s3-api.service.mjs +166 -0
  78. package/esm2022/api/s3-api.serviceInterface.mjs +2 -0
  79. package/esm2022/api/search-periods-api.service.mjs +206 -0
  80. package/esm2022/api/search-periods-api.serviceInterface.mjs +2 -0
  81. package/esm2022/api/sso-api.service.mjs +269 -0
  82. package/esm2022/api/sso-api.serviceInterface.mjs +2 -0
  83. package/esm2022/api/token-api.service.mjs +214 -0
  84. package/esm2022/api/token-api.serviceInterface.mjs +2 -0
  85. package/esm2022/api/user-capacities-api.service.mjs +432 -0
  86. package/esm2022/api/user-capacities-api.serviceInterface.mjs +2 -0
  87. package/esm2022/api/user-logins-api.service.mjs +329 -0
  88. package/esm2022/api/user-logins-api.serviceInterface.mjs +2 -0
  89. package/esm2022/api/user-periods-api.service.mjs +225 -0
  90. package/esm2022/api/user-periods-api.serviceInterface.mjs +2 -0
  91. package/esm2022/api/user-timezone-setting-api.service.mjs +219 -0
  92. package/esm2022/api/user-timezone-setting-api.serviceInterface.mjs +2 -0
  93. package/esm2022/api/user-timezones-api.service.mjs +247 -0
  94. package/esm2022/api/user-timezones-api.serviceInterface.mjs +2 -0
  95. package/esm2022/api/users-api.service.mjs +413 -0
  96. package/esm2022/api/users-api.serviceInterface.mjs +2 -0
  97. package/esm2022/api/vendors-api.service.mjs +432 -0
  98. package/esm2022/api/vendors-api.serviceInterface.mjs +2 -0
  99. package/esm2022/api/who-am-i-api.service.mjs +150 -0
  100. package/esm2022/api/who-am-i-api.serviceInterface.mjs +2 -0
  101. package/esm2022/api/work-types-api.service.mjs +446 -0
  102. package/esm2022/api/work-types-api.serviceInterface.mjs +2 -0
  103. package/esm2022/api.module.mjs +40 -0
  104. package/esm2022/configuration.mjs +140 -0
  105. package/esm2022/encoder.mjs +19 -0
  106. package/esm2022/index.mjs +7 -0
  107. package/esm2022/model/branch-period-request.dto.mjs +2 -0
  108. package/esm2022/model/branch-period-type-enum.dto.mjs +18 -0
  109. package/esm2022/model/branch-period.dto.mjs +2 -0
  110. package/esm2022/model/branch-periods-create-branch-error-component.dto.mjs +21 -0
  111. package/esm2022/model/branch-periods-create-description-error-component.dto.mjs +23 -0
  112. package/esm2022/model/branch-periods-create-error-response400.dto.mjs +2 -0
  113. package/esm2022/model/branch-periods-create-error.dto.mjs +2 -0
  114. package/esm2022/model/branch-periods-create-non-field-errors-error-component.dto.mjs +19 -0
  115. package/esm2022/model/branch-periods-create-period-end-error-component.dto.mjs +20 -0
  116. package/esm2022/model/branch-periods-create-period-non-field-errors-error-component.dto.mjs +20 -0
  117. package/esm2022/model/branch-periods-create-period-start-error-component.dto.mjs +20 -0
  118. package/esm2022/model/branch-periods-create-title-error-component.dto.mjs +24 -0
  119. package/esm2022/model/branch-periods-create-type-error-component.dto.mjs +20 -0
  120. package/esm2022/model/branch-periods-create-validation-error.dto.mjs +2 -0
  121. package/esm2022/model/branch-periods-destroy-error-response400.dto.mjs +2 -0
  122. package/esm2022/model/branch-periods-list-error-response400.dto.mjs +2 -0
  123. package/esm2022/model/branch-periods-retrieve-error-response400.dto.mjs +2 -0
  124. package/esm2022/model/branch-periods-update-branch-error-component.dto.mjs +21 -0
  125. package/esm2022/model/branch-periods-update-description-error-component.dto.mjs +23 -0
  126. package/esm2022/model/branch-periods-update-error-response400.dto.mjs +2 -0
  127. package/esm2022/model/branch-periods-update-error.dto.mjs +2 -0
  128. package/esm2022/model/branch-periods-update-non-field-errors-error-component.dto.mjs +19 -0
  129. package/esm2022/model/branch-periods-update-period-end-error-component.dto.mjs +20 -0
  130. package/esm2022/model/branch-periods-update-period-non-field-errors-error-component.dto.mjs +20 -0
  131. package/esm2022/model/branch-periods-update-period-start-error-component.dto.mjs +20 -0
  132. package/esm2022/model/branch-periods-update-title-error-component.dto.mjs +24 -0
  133. package/esm2022/model/branch-periods-update-type-error-component.dto.mjs +20 -0
  134. package/esm2022/model/branch-periods-update-validation-error.dto.mjs +2 -0
  135. package/esm2022/model/branch-request.dto.mjs +11 -0
  136. package/esm2022/model/branch-user-stats.dto.mjs +11 -0
  137. package/esm2022/model/branch.dto.mjs +2 -0
  138. package/esm2022/model/branches-create-address1-error-component.dto.mjs +24 -0
  139. package/esm2022/model/branches-create-address2-error-component.dto.mjs +24 -0
  140. package/esm2022/model/branches-create-ceo-error-component.dto.mjs +19 -0
  141. package/esm2022/model/branches-create-code-error-component.dto.mjs +25 -0
  142. package/esm2022/model/branches-create-country-error-component.dto.mjs +24 -0
  143. package/esm2022/model/branches-create-error-response400.dto.mjs +2 -0
  144. package/esm2022/model/branches-create-error.dto.mjs +2 -0
  145. package/esm2022/model/branches-create-hr-email-error-component.dto.mjs +24 -0
  146. package/esm2022/model/branches-create-icon-error-component.dto.mjs +22 -0
  147. package/esm2022/model/branches-create-is-oversea-error-component.dto.mjs +20 -0
  148. package/esm2022/model/branches-create-is-vacation-file-required-error-component.dto.mjs +20 -0
  149. package/esm2022/model/branches-create-name-error-component.dto.mjs +25 -0
  150. package/esm2022/model/branches-create-non-field-errors-error-component.dto.mjs +19 -0
  151. package/esm2022/model/branches-create-postal-code-error-component.dto.mjs +24 -0
  152. package/esm2022/model/branches-create-state-error-component.dto.mjs +24 -0
  153. package/esm2022/model/branches-create-timezone-error-component.dto.mjs +24 -0
  154. package/esm2022/model/branches-create-vacation-days-count-error-component.dto.mjs +23 -0
  155. package/esm2022/model/branches-create-vacation-period-error-component.dto.mjs +23 -0
  156. package/esm2022/model/branches-create-validation-error.dto.mjs +2 -0
  157. package/esm2022/model/branches-destroy-error-response400.dto.mjs +2 -0
  158. package/esm2022/model/branches-list-error-response400.dto.mjs +2 -0
  159. package/esm2022/model/branches-list-error.dto.mjs +2 -0
  160. package/esm2022/model/branches-list-id-error-component.dto.mjs +19 -0
  161. package/esm2022/model/branches-list-id-in-error-component.dto.mjs +19 -0
  162. package/esm2022/model/branches-list-validation-error.dto.mjs +2 -0
  163. package/esm2022/model/branches-retrieve-error-response400.dto.mjs +2 -0
  164. package/esm2022/model/branches-update-address1-error-component.dto.mjs +24 -0
  165. package/esm2022/model/branches-update-address2-error-component.dto.mjs +24 -0
  166. package/esm2022/model/branches-update-ceo-error-component.dto.mjs +19 -0
  167. package/esm2022/model/branches-update-code-error-component.dto.mjs +25 -0
  168. package/esm2022/model/branches-update-country-error-component.dto.mjs +24 -0
  169. package/esm2022/model/branches-update-error-response400.dto.mjs +2 -0
  170. package/esm2022/model/branches-update-error.dto.mjs +2 -0
  171. package/esm2022/model/branches-update-hr-email-error-component.dto.mjs +24 -0
  172. package/esm2022/model/branches-update-icon-error-component.dto.mjs +22 -0
  173. package/esm2022/model/branches-update-is-oversea-error-component.dto.mjs +20 -0
  174. package/esm2022/model/branches-update-is-vacation-file-required-error-component.dto.mjs +20 -0
  175. package/esm2022/model/branches-update-name-error-component.dto.mjs +25 -0
  176. package/esm2022/model/branches-update-non-field-errors-error-component.dto.mjs +19 -0
  177. package/esm2022/model/branches-update-postal-code-error-component.dto.mjs +24 -0
  178. package/esm2022/model/branches-update-state-error-component.dto.mjs +24 -0
  179. package/esm2022/model/branches-update-timezone-error-component.dto.mjs +24 -0
  180. package/esm2022/model/branches-update-vacation-days-count-error-component.dto.mjs +23 -0
  181. package/esm2022/model/branches-update-vacation-period-error-component.dto.mjs +23 -0
  182. package/esm2022/model/branches-update-validation-error.dto.mjs +2 -0
  183. package/esm2022/model/branches-users-stats-list-error-response400.dto.mjs +2 -0
  184. package/esm2022/model/branches-users-stats-list-error.dto.mjs +2 -0
  185. package/esm2022/model/branches-users-stats-list-id-error-component.dto.mjs +19 -0
  186. package/esm2022/model/branches-users-stats-list-id-in-error-component.dto.mjs +19 -0
  187. package/esm2022/model/branches-users-stats-list-users-search-error-component.dto.mjs +18 -0
  188. package/esm2022/model/branches-users-stats-list-validation-error.dto.mjs +2 -0
  189. package/esm2022/model/client-error-enum.dto.mjs +17 -0
  190. package/esm2022/model/config-enum.dto.mjs +21 -0
  191. package/esm2022/model/create-jira-project-request.dto.mjs +11 -0
  192. package/esm2022/model/create-jira-project.dto.mjs +11 -0
  193. package/esm2022/model/date-range-field-request.dto.mjs +11 -0
  194. package/esm2022/model/date-range-field.dto.mjs +11 -0
  195. package/esm2022/model/debug-login-request.dto.mjs +11 -0
  196. package/esm2022/model/department-request.dto.mjs +11 -0
  197. package/esm2022/model/department.dto.mjs +2 -0
  198. package/esm2022/model/departments-create-error-response400.dto.mjs +2 -0
  199. package/esm2022/model/departments-create-error.dto.mjs +2 -0
  200. package/esm2022/model/departments-create-name-error-component.dto.mjs +25 -0
  201. package/esm2022/model/departments-create-non-field-errors-error-component.dto.mjs +19 -0
  202. package/esm2022/model/departments-create-utilization-error-component.dto.mjs +20 -0
  203. package/esm2022/model/departments-create-validation-error.dto.mjs +2 -0
  204. package/esm2022/model/departments-create-work-types-error-component.dto.mjs +22 -0
  205. package/esm2022/model/departments-destroy-error-response400.dto.mjs +2 -0
  206. package/esm2022/model/departments-list-error-response400.dto.mjs +2 -0
  207. package/esm2022/model/departments-list-error.dto.mjs +2 -0
  208. package/esm2022/model/departments-list-id-error-component.dto.mjs +19 -0
  209. package/esm2022/model/departments-list-id-in-error-component.dto.mjs +19 -0
  210. package/esm2022/model/departments-list-name-error-component.dto.mjs +18 -0
  211. package/esm2022/model/departments-list-name-in-error-component.dto.mjs +18 -0
  212. package/esm2022/model/departments-list-validation-error.dto.mjs +2 -0
  213. package/esm2022/model/departments-list-work-types-id-in-error-component.dto.mjs +19 -0
  214. package/esm2022/model/departments-retrieve-error-response400.dto.mjs +2 -0
  215. package/esm2022/model/departments-update-error-response400.dto.mjs +2 -0
  216. package/esm2022/model/departments-update-error.dto.mjs +2 -0
  217. package/esm2022/model/departments-update-name-error-component.dto.mjs +25 -0
  218. package/esm2022/model/departments-update-non-field-errors-error-component.dto.mjs +19 -0
  219. package/esm2022/model/departments-update-utilization-error-component.dto.mjs +20 -0
  220. package/esm2022/model/departments-update-validation-error.dto.mjs +2 -0
  221. package/esm2022/model/departments-update-work-types-error-component.dto.mjs +22 -0
  222. package/esm2022/model/dismissal-reasons-create-error-response400.dto.mjs +2 -0
  223. package/esm2022/model/dismissal-reasons-create-error.dto.mjs +2 -0
  224. package/esm2022/model/dismissal-reasons-create-name-error-component.dto.mjs +25 -0
  225. package/esm2022/model/dismissal-reasons-create-non-field-errors-error-component.dto.mjs +19 -0
  226. package/esm2022/model/dismissal-reasons-create-type-error-component.dto.mjs +20 -0
  227. package/esm2022/model/dismissal-reasons-create-validation-error.dto.mjs +2 -0
  228. package/esm2022/model/dismissal-reasons-destroy-error-response400.dto.mjs +2 -0
  229. package/esm2022/model/dismissal-reasons-list-error-response400.dto.mjs +2 -0
  230. package/esm2022/model/dismissal-reasons-list-error.dto.mjs +2 -0
  231. package/esm2022/model/dismissal-reasons-list-id-error-component.dto.mjs +19 -0
  232. package/esm2022/model/dismissal-reasons-list-id-in-error-component.dto.mjs +19 -0
  233. package/esm2022/model/dismissal-reasons-list-name-error-component.dto.mjs +18 -0
  234. package/esm2022/model/dismissal-reasons-list-name-in-error-component.dto.mjs +18 -0
  235. package/esm2022/model/dismissal-reasons-list-type-error-component.dto.mjs +18 -0
  236. package/esm2022/model/dismissal-reasons-list-type-in-error-component.dto.mjs +18 -0
  237. package/esm2022/model/dismissal-reasons-list-validation-error.dto.mjs +2 -0
  238. package/esm2022/model/dismissal-reasons-retrieve-error-response400.dto.mjs +2 -0
  239. package/esm2022/model/dismissal-reasons-update-error-response400.dto.mjs +2 -0
  240. package/esm2022/model/dismissal-reasons-update-error.dto.mjs +2 -0
  241. package/esm2022/model/dismissal-reasons-update-name-error-component.dto.mjs +25 -0
  242. package/esm2022/model/dismissal-reasons-update-non-field-errors-error-component.dto.mjs +19 -0
  243. package/esm2022/model/dismissal-reasons-update-type-error-component.dto.mjs +20 -0
  244. package/esm2022/model/dismissal-reasons-update-validation-error.dto.mjs +2 -0
  245. package/esm2022/model/error-code401-enum.dto.mjs +18 -0
  246. package/esm2022/model/error-code403-enum.dto.mjs +17 -0
  247. package/esm2022/model/error-code404-enum.dto.mjs +17 -0
  248. package/esm2022/model/error-code405-enum.dto.mjs +17 -0
  249. package/esm2022/model/error-code406-enum.dto.mjs +17 -0
  250. package/esm2022/model/error-code415-enum.dto.mjs +17 -0
  251. package/esm2022/model/error-code500-enum.dto.mjs +17 -0
  252. package/esm2022/model/error-response401.dto.mjs +2 -0
  253. package/esm2022/model/error-response403.dto.mjs +2 -0
  254. package/esm2022/model/error-response404.dto.mjs +2 -0
  255. package/esm2022/model/error-response405.dto.mjs +2 -0
  256. package/esm2022/model/error-response406.dto.mjs +2 -0
  257. package/esm2022/model/error-response415.dto.mjs +2 -0
  258. package/esm2022/model/error-response500.dto.mjs +2 -0
  259. package/esm2022/model/error401.dto.mjs +2 -0
  260. package/esm2022/model/error403.dto.mjs +2 -0
  261. package/esm2022/model/error404.dto.mjs +2 -0
  262. package/esm2022/model/error405.dto.mjs +2 -0
  263. package/esm2022/model/error406.dto.mjs +2 -0
  264. package/esm2022/model/error415.dto.mjs +2 -0
  265. package/esm2022/model/error500.dto.mjs +2 -0
  266. package/esm2022/model/group-enum.dto.mjs +18 -0
  267. package/esm2022/model/jira-client-create-project-create-error-response400.dto.mjs +2 -0
  268. package/esm2022/model/jira-client-create-project-create-error.dto.mjs +2 -0
  269. package/esm2022/model/jira-client-create-project-create-instance-error-component.dto.mjs +21 -0
  270. package/esm2022/model/jira-client-create-project-create-lead-email-error-component.dto.mjs +23 -0
  271. package/esm2022/model/jira-client-create-project-create-non-field-errors-error-component.dto.mjs +19 -0
  272. package/esm2022/model/jira-client-create-project-create-project-name-error-component.dto.mjs +23 -0
  273. package/esm2022/model/jira-client-create-project-create-validation-error.dto.mjs +2 -0
  274. package/esm2022/model/jira-instance.dto.mjs +11 -0
  275. package/esm2022/model/jira-instances-list-error-response400.dto.mjs +2 -0
  276. package/esm2022/model/jira-instances-retrieve-error-response400.dto.mjs +2 -0
  277. package/esm2022/model/location-request.dto.mjs +11 -0
  278. package/esm2022/model/location.dto.mjs +11 -0
  279. package/esm2022/model/locations-create-error-response400.dto.mjs +2 -0
  280. package/esm2022/model/locations-create-error.dto.mjs +2 -0
  281. package/esm2022/model/locations-create-icon-error-component.dto.mjs +22 -0
  282. package/esm2022/model/locations-create-name-error-component.dto.mjs +24 -0
  283. package/esm2022/model/locations-create-non-field-errors-error-component.dto.mjs +20 -0
  284. package/esm2022/model/locations-create-timezone-error-component.dto.mjs +24 -0
  285. package/esm2022/model/locations-create-validation-error.dto.mjs +2 -0
  286. package/esm2022/model/locations-destroy-error-response400.dto.mjs +2 -0
  287. package/esm2022/model/locations-list-error-response400.dto.mjs +2 -0
  288. package/esm2022/model/locations-list-error.dto.mjs +2 -0
  289. package/esm2022/model/locations-list-id-error-component.dto.mjs +19 -0
  290. package/esm2022/model/locations-list-id-in-error-component.dto.mjs +19 -0
  291. package/esm2022/model/locations-list-name-error-component.dto.mjs +18 -0
  292. package/esm2022/model/locations-list-name-in-error-component.dto.mjs +18 -0
  293. package/esm2022/model/locations-list-timezone-error-component.dto.mjs +18 -0
  294. package/esm2022/model/locations-list-timezone-in-error-component.dto.mjs +18 -0
  295. package/esm2022/model/locations-list-validation-error.dto.mjs +2 -0
  296. package/esm2022/model/locations-retrieve-error-response400.dto.mjs +2 -0
  297. package/esm2022/model/locations-update-error-response400.dto.mjs +2 -0
  298. package/esm2022/model/locations-update-error.dto.mjs +2 -0
  299. package/esm2022/model/locations-update-icon-error-component.dto.mjs +22 -0
  300. package/esm2022/model/locations-update-name-error-component.dto.mjs +24 -0
  301. package/esm2022/model/locations-update-non-field-errors-error-component.dto.mjs +20 -0
  302. package/esm2022/model/locations-update-timezone-error-component.dto.mjs +24 -0
  303. package/esm2022/model/locations-update-validation-error.dto.mjs +2 -0
  304. package/esm2022/model/login-open-id-request.dto.mjs +11 -0
  305. package/esm2022/model/models.mjs +585 -0
  306. package/esm2022/model/open-id-code-exchange-request.dto.mjs +11 -0
  307. package/esm2022/model/open-id-redirect.dto.mjs +11 -0
  308. package/esm2022/model/ordering-enum.dto.mjs +18 -0
  309. package/esm2022/model/paginated-branch-list.dto.mjs +2 -0
  310. package/esm2022/model/paginated-branch-period-list.dto.mjs +2 -0
  311. package/esm2022/model/paginated-branch-user-stats-list.dto.mjs +2 -0
  312. package/esm2022/model/paginated-department-list.dto.mjs +2 -0
  313. package/esm2022/model/paginated-jira-instance-list.dto.mjs +2 -0
  314. package/esm2022/model/paginated-location-list.dto.mjs +2 -0
  315. package/esm2022/model/paginated-project-list.dto.mjs +2 -0
  316. package/esm2022/model/paginated-role-list.dto.mjs +2 -0
  317. package/esm2022/model/paginated-simple-dismissal-reason-list.dto.mjs +2 -0
  318. package/esm2022/model/paginated-simple-vendor-list.dto.mjs +2 -0
  319. package/esm2022/model/paginated-user-capacity-list.dto.mjs +2 -0
  320. package/esm2022/model/paginated-user-list.dto.mjs +2 -0
  321. package/esm2022/model/paginated-user-login-list.dto.mjs +2 -0
  322. package/esm2022/model/paginated-user-period-list.dto.mjs +2 -0
  323. package/esm2022/model/paginated-user-sum-capacity-list.dto.mjs +2 -0
  324. package/esm2022/model/paginated-user-timezone-list.dto.mjs +2 -0
  325. package/esm2022/model/paginated-work-type-list.dto.mjs +2 -0
  326. package/esm2022/model/parse-error-code-enum.dto.mjs +17 -0
  327. package/esm2022/model/parse-error-response.dto.mjs +2 -0
  328. package/esm2022/model/parse-error.dto.mjs +2 -0
  329. package/esm2022/model/period-model-enum.dto.mjs +19 -0
  330. package/esm2022/model/period-type-enum.dto.mjs +25 -0
  331. package/esm2022/model/period-user.dto.mjs +2 -0
  332. package/esm2022/model/period.dto.mjs +2 -0
  333. package/esm2022/model/permission-data-request.dto.mjs +2 -0
  334. package/esm2022/model/permission-data-retrieve-error-response400.dto.mjs +2 -0
  335. package/esm2022/model/permission-data.dto.mjs +2 -0
  336. package/esm2022/model/permission-enum.dto.mjs +23 -0
  337. package/esm2022/model/profile-request.dto.mjs +11 -0
  338. package/esm2022/model/profile-retrieve-error-response400.dto.mjs +2 -0
  339. package/esm2022/model/profile-update-avatar-error-component.dto.mjs +22 -0
  340. package/esm2022/model/profile-update-branch-error-component.dto.mjs +21 -0
  341. package/esm2022/model/profile-update-created-by-error-component.dto.mjs +19 -0
  342. package/esm2022/model/profile-update-department-error-component.dto.mjs +21 -0
  343. package/esm2022/model/profile-update-dismissal-reason-error-component.dto.mjs +19 -0
  344. package/esm2022/model/profile-update-error-response400.dto.mjs +2 -0
  345. package/esm2022/model/profile-update-error.dto.mjs +2 -0
  346. package/esm2022/model/profile-update-first-name-error-component.dto.mjs +24 -0
  347. package/esm2022/model/profile-update-last-name-error-component.dto.mjs +24 -0
  348. package/esm2022/model/profile-update-location-error-component.dto.mjs +21 -0
  349. package/esm2022/model/profile-update-middle-name-error-component.dto.mjs +22 -0
  350. package/esm2022/model/profile-update-non-field-errors-error-component.dto.mjs +19 -0
  351. package/esm2022/model/profile-update-recruited-by-error-component.dto.mjs +19 -0
  352. package/esm2022/model/profile-update-role-error-component.dto.mjs +19 -0
  353. package/esm2022/model/profile-update-updated-by-error-component.dto.mjs +19 -0
  354. package/esm2022/model/profile-update-validation-error.dto.mjs +2 -0
  355. package/esm2022/model/profile-update-vendor-error-component.dto.mjs +19 -0
  356. package/esm2022/model/profile-update-work-type-error-component.dto.mjs +21 -0
  357. package/esm2022/model/profile.dto.mjs +2 -0
  358. package/esm2022/model/project.dto.mjs +11 -0
  359. package/esm2022/model/projects-list-error-response400.dto.mjs +2 -0
  360. package/esm2022/model/projects-retrieve-error-response400.dto.mjs +2 -0
  361. package/esm2022/model/role-edit-permission-request.dto.mjs +2 -0
  362. package/esm2022/model/role-edit-permission.dto.mjs +2 -0
  363. package/esm2022/model/role-request.dto.mjs +2 -0
  364. package/esm2022/model/role.dto.mjs +2 -0
  365. package/esm2022/model/roles-create-error-response400.dto.mjs +2 -0
  366. package/esm2022/model/roles-create-error.dto.mjs +2 -0
  367. package/esm2022/model/roles-create-name-error-component.dto.mjs +25 -0
  368. package/esm2022/model/roles-create-non-field-errors-error-component.dto.mjs +19 -0
  369. package/esm2022/model/roles-create-permissions-index-non-field-errors-error-component.dto.mjs +20 -0
  370. package/esm2022/model/roles-create-permissions-index-permission-error-component.dto.mjs +20 -0
  371. package/esm2022/model/roles-create-permissions-index-scope-error-component.dto.mjs +20 -0
  372. package/esm2022/model/roles-create-permissions-non-field-errors-error-component.dto.mjs +20 -0
  373. package/esm2022/model/roles-create-validation-error.dto.mjs +2 -0
  374. package/esm2022/model/roles-destroy-error-response400.dto.mjs +2 -0
  375. package/esm2022/model/roles-list-error-response400.dto.mjs +2 -0
  376. package/esm2022/model/roles-list-error.dto.mjs +2 -0
  377. package/esm2022/model/roles-list-permissions-permission-error-component.dto.mjs +18 -0
  378. package/esm2022/model/roles-list-permissions-permission-in-error-component.dto.mjs +18 -0
  379. package/esm2022/model/roles-list-permissions-scope-error-component.dto.mjs +18 -0
  380. package/esm2022/model/roles-list-permissions-scope-in-error-component.dto.mjs +18 -0
  381. package/esm2022/model/roles-list-validation-error.dto.mjs +2 -0
  382. package/esm2022/model/roles-retrieve-error-response400.dto.mjs +2 -0
  383. package/esm2022/model/roles-update-error-response400.dto.mjs +2 -0
  384. package/esm2022/model/roles-update-error.dto.mjs +2 -0
  385. package/esm2022/model/roles-update-name-error-component.dto.mjs +25 -0
  386. package/esm2022/model/roles-update-non-field-errors-error-component.dto.mjs +19 -0
  387. package/esm2022/model/roles-update-permissions-index-non-field-errors-error-component.dto.mjs +20 -0
  388. package/esm2022/model/roles-update-permissions-index-permission-error-component.dto.mjs +20 -0
  389. package/esm2022/model/roles-update-permissions-index-scope-error-component.dto.mjs +20 -0
  390. package/esm2022/model/roles-update-permissions-non-field-errors-error-component.dto.mjs +20 -0
  391. package/esm2022/model/roles-update-validation-error.dto.mjs +2 -0
  392. package/esm2022/model/s3-get-params-create-config-error-component.dto.mjs +20 -0
  393. package/esm2022/model/s3-get-params-create-content-length-error-component.dto.mjs +21 -0
  394. package/esm2022/model/s3-get-params-create-content-type-error-component.dto.mjs +23 -0
  395. package/esm2022/model/s3-get-params-create-error-response400.dto.mjs +2 -0
  396. package/esm2022/model/s3-get-params-create-error.dto.mjs +2 -0
  397. package/esm2022/model/s3-get-params-create-filename-error-component.dto.mjs +23 -0
  398. package/esm2022/model/s3-get-params-create-non-field-errors-error-component.dto.mjs +19 -0
  399. package/esm2022/model/s3-get-params-create-validation-error.dto.mjs +2 -0
  400. package/esm2022/model/s3-params.dto.mjs +11 -0
  401. package/esm2022/model/s3-request-params-request.dto.mjs +2 -0
  402. package/esm2022/model/s3-upload.dto.mjs +2 -0
  403. package/esm2022/model/scope-enum.dto.mjs +21 -0
  404. package/esm2022/model/search-periods-list-branch-in-error-component.dto.mjs +18 -0
  405. package/esm2022/model/search-periods-list-error-response400.dto.mjs +2 -0
  406. package/esm2022/model/search-periods-list-error.dto.mjs +2 -0
  407. package/esm2022/model/search-periods-list-period-gte-error-component.dto.mjs +19 -0
  408. package/esm2022/model/search-periods-list-period-lte-error-component.dto.mjs +19 -0
  409. package/esm2022/model/search-periods-list-status-error-component.dto.mjs +18 -0
  410. package/esm2022/model/search-periods-list-type-error-component.dto.mjs +18 -0
  411. package/esm2022/model/search-periods-list-user-branch-in-error-component.dto.mjs +18 -0
  412. package/esm2022/model/search-periods-list-user-department-in-error-component.dto.mjs +18 -0
  413. package/esm2022/model/search-periods-list-user-in-error-component.dto.mjs +18 -0
  414. package/esm2022/model/search-periods-list-user-status-in-error-component.dto.mjs +18 -0
  415. package/esm2022/model/search-periods-list-user-supervisees-error-component.dto.mjs +18 -0
  416. package/esm2022/model/search-periods-list-user-supervisors-error-component.dto.mjs +18 -0
  417. package/esm2022/model/search-periods-list-user-work-type-in-error-component.dto.mjs +18 -0
  418. package/esm2022/model/search-periods-list-validation-error.dto.mjs +2 -0
  419. package/esm2022/model/server-error-enum.dto.mjs +17 -0
  420. package/esm2022/model/simple-branch-request.dto.mjs +11 -0
  421. package/esm2022/model/simple-branch.dto.mjs +11 -0
  422. package/esm2022/model/simple-department-request.dto.mjs +11 -0
  423. package/esm2022/model/simple-department.dto.mjs +11 -0
  424. package/esm2022/model/simple-dismissal-reason-request.dto.mjs +2 -0
  425. package/esm2022/model/simple-dismissal-reason-type-enum.dto.mjs +18 -0
  426. package/esm2022/model/simple-dismissal-reason.dto.mjs +2 -0
  427. package/esm2022/model/simple-location-request.dto.mjs +11 -0
  428. package/esm2022/model/simple-location.dto.mjs +11 -0
  429. package/esm2022/model/simple-role-request.dto.mjs +11 -0
  430. package/esm2022/model/simple-role.dto.mjs +11 -0
  431. package/esm2022/model/simple-user-request.dto.mjs +11 -0
  432. package/esm2022/model/simple-user.dto.mjs +11 -0
  433. package/esm2022/model/simple-vendor-request.dto.mjs +11 -0
  434. package/esm2022/model/simple-vendor.dto.mjs +11 -0
  435. package/esm2022/model/simple-work-type-request.dto.mjs +11 -0
  436. package/esm2022/model/simple-work-type.dto.mjs +11 -0
  437. package/esm2022/model/sso-code-exchange-create-code-error-component.dto.mjs +23 -0
  438. package/esm2022/model/sso-code-exchange-create-error-response400.dto.mjs +2 -0
  439. package/esm2022/model/sso-code-exchange-create-error.dto.mjs +2 -0
  440. package/esm2022/model/sso-code-exchange-create-non-field-errors-error-component.dto.mjs +19 -0
  441. package/esm2022/model/sso-code-exchange-create-redirect-uri-error-component.dto.mjs +22 -0
  442. package/esm2022/model/sso-code-exchange-create-validation-error.dto.mjs +2 -0
  443. package/esm2022/model/sso-debug-create-email-error-component.dto.mjs +23 -0
  444. package/esm2022/model/sso-debug-create-error-response400.dto.mjs +2 -0
  445. package/esm2022/model/sso-debug-create-error.dto.mjs +2 -0
  446. package/esm2022/model/sso-debug-create-non-field-errors-error-component.dto.mjs +19 -0
  447. package/esm2022/model/sso-debug-create-validation-error.dto.mjs +2 -0
  448. package/esm2022/model/sso-start-create-error-response400.dto.mjs +2 -0
  449. package/esm2022/model/sso-start-create-error.dto.mjs +2 -0
  450. package/esm2022/model/sso-start-create-non-field-errors-error-component.dto.mjs +19 -0
  451. package/esm2022/model/sso-start-create-redirect-uri-error-component.dto.mjs +22 -0
  452. package/esm2022/model/sso-start-create-validation-error.dto.mjs +2 -0
  453. package/esm2022/model/token-obtain-pair.dto.mjs +11 -0
  454. package/esm2022/model/token-refresh-create-error-response400.dto.mjs +2 -0
  455. package/esm2022/model/token-refresh-create-error.dto.mjs +2 -0
  456. package/esm2022/model/token-refresh-create-non-field-errors-error-component.dto.mjs +19 -0
  457. package/esm2022/model/token-refresh-create-refresh-error-component.dto.mjs +23 -0
  458. package/esm2022/model/token-refresh-create-validation-error.dto.mjs +2 -0
  459. package/esm2022/model/token-refresh-request.dto.mjs +11 -0
  460. package/esm2022/model/token-refresh.dto.mjs +11 -0
  461. package/esm2022/model/token-verify-create-error-response400.dto.mjs +2 -0
  462. package/esm2022/model/token-verify-create-error.dto.mjs +2 -0
  463. package/esm2022/model/token-verify-create-non-field-errors-error-component.dto.mjs +19 -0
  464. package/esm2022/model/token-verify-create-token-error-component.dto.mjs +23 -0
  465. package/esm2022/model/token-verify-create-validation-error.dto.mjs +2 -0
  466. package/esm2022/model/token-verify-request.dto.mjs +11 -0
  467. package/esm2022/model/user-capacities-calculate-capacity-create-billable-capacity-error-component.dto.mjs +21 -0
  468. package/esm2022/model/user-capacities-calculate-capacity-create-branch-error-component.dto.mjs +21 -0
  469. package/esm2022/model/user-capacities-calculate-capacity-create-date-error-component.dto.mjs +21 -0
  470. package/esm2022/model/user-capacities-calculate-capacity-create-department-error-component.dto.mjs +21 -0
  471. package/esm2022/model/user-capacities-calculate-capacity-create-error-response400.dto.mjs +2 -0
  472. package/esm2022/model/user-capacities-calculate-capacity-create-error.dto.mjs +2 -0
  473. package/esm2022/model/user-capacities-calculate-capacity-create-non-field-errors-error-component.dto.mjs +19 -0
  474. package/esm2022/model/user-capacities-calculate-capacity-create-total-capacity-error-component.dto.mjs +21 -0
  475. package/esm2022/model/user-capacities-calculate-capacity-create-user-error-component.dto.mjs +21 -0
  476. package/esm2022/model/user-capacities-calculate-capacity-create-validation-error.dto.mjs +2 -0
  477. package/esm2022/model/user-capacities-calculate-capacity-create-work-type-error-component.dto.mjs +21 -0
  478. package/esm2022/model/user-capacities-get-period-capacity-list-date-gte-error-component.dto.mjs +18 -0
  479. package/esm2022/model/user-capacities-get-period-capacity-list-date-lte-error-component.dto.mjs +18 -0
  480. package/esm2022/model/user-capacities-get-period-capacity-list-error-response400.dto.mjs +2 -0
  481. package/esm2022/model/user-capacities-get-period-capacity-list-error.dto.mjs +2 -0
  482. package/esm2022/model/user-capacities-get-period-capacity-list-object-ids-error-component.dto.mjs +19 -0
  483. package/esm2022/model/user-capacities-get-period-capacity-list-period-type-error-component.dto.mjs +19 -0
  484. package/esm2022/model/user-capacities-get-period-capacity-list-validation-error.dto.mjs +2 -0
  485. package/esm2022/model/user-capacities-list-branch-id-error-component.dto.mjs +19 -0
  486. package/esm2022/model/user-capacities-list-branch-id-in-error-component.dto.mjs +19 -0
  487. package/esm2022/model/user-capacities-list-date-gte-error-component.dto.mjs +18 -0
  488. package/esm2022/model/user-capacities-list-date-lte-error-component.dto.mjs +18 -0
  489. package/esm2022/model/user-capacities-list-department-id-error-component.dto.mjs +19 -0
  490. package/esm2022/model/user-capacities-list-department-id-in-error-component.dto.mjs +19 -0
  491. package/esm2022/model/user-capacities-list-error-response400.dto.mjs +2 -0
  492. package/esm2022/model/user-capacities-list-error.dto.mjs +2 -0
  493. package/esm2022/model/user-capacities-list-id-error-component.dto.mjs +19 -0
  494. package/esm2022/model/user-capacities-list-id-in-error-component.dto.mjs +19 -0
  495. package/esm2022/model/user-capacities-list-user-id-error-component.dto.mjs +19 -0
  496. package/esm2022/model/user-capacities-list-user-id-in-error-component.dto.mjs +19 -0
  497. package/esm2022/model/user-capacities-list-validation-error.dto.mjs +2 -0
  498. package/esm2022/model/user-capacities-list-work-type-id-error-component.dto.mjs +19 -0
  499. package/esm2022/model/user-capacities-list-work-type-id-in-error-component.dto.mjs +19 -0
  500. package/esm2022/model/user-capacities-retrieve-error-response400.dto.mjs +2 -0
  501. package/esm2022/model/user-capacity-request.dto.mjs +11 -0
  502. package/esm2022/model/user-capacity.dto.mjs +11 -0
  503. package/esm2022/model/user-login-request.dto.mjs +11 -0
  504. package/esm2022/model/user-login.dto.mjs +2 -0
  505. package/esm2022/model/user-logins-list-branch-error-component.dto.mjs +18 -0
  506. package/esm2022/model/user-logins-list-branch-in-error-component.dto.mjs +18 -0
  507. package/esm2022/model/user-logins-list-department-error-component.dto.mjs +18 -0
  508. package/esm2022/model/user-logins-list-department-in-error-component.dto.mjs +18 -0
  509. package/esm2022/model/user-logins-list-error-response400.dto.mjs +2 -0
  510. package/esm2022/model/user-logins-list-error.dto.mjs +2 -0
  511. package/esm2022/model/user-logins-list-role-error-component.dto.mjs +18 -0
  512. package/esm2022/model/user-logins-list-role-in-error-component.dto.mjs +18 -0
  513. package/esm2022/model/user-logins-list-validation-error.dto.mjs +2 -0
  514. package/esm2022/model/user-logins-list-work-type-error-component.dto.mjs +18 -0
  515. package/esm2022/model/user-logins-list-work-type-in-error-component.dto.mjs +18 -0
  516. package/esm2022/model/user-logins-retrieve-error-response400.dto.mjs +2 -0
  517. package/esm2022/model/user-logins-update-email-error-component.dto.mjs +25 -0
  518. package/esm2022/model/user-logins-update-error-response400.dto.mjs +2 -0
  519. package/esm2022/model/user-logins-update-error.dto.mjs +2 -0
  520. package/esm2022/model/user-logins-update-non-field-errors-error-component.dto.mjs +19 -0
  521. package/esm2022/model/user-logins-update-role-error-component.dto.mjs +19 -0
  522. package/esm2022/model/user-logins-update-validation-error.dto.mjs +2 -0
  523. package/esm2022/model/user-period-status-enum.dto.mjs +19 -0
  524. package/esm2022/model/user-period-type-enum.dto.mjs +22 -0
  525. package/esm2022/model/user-period.dto.mjs +2 -0
  526. package/esm2022/model/user-periods-list-error-response400.dto.mjs +2 -0
  527. package/esm2022/model/user-periods-retrieve-error-response400.dto.mjs +2 -0
  528. package/esm2022/model/user-request.dto.mjs +2 -0
  529. package/esm2022/model/user-status-enum.dto.mjs +19 -0
  530. package/esm2022/model/user-sum-capacity.dto.mjs +11 -0
  531. package/esm2022/model/user-timezone-request.dto.mjs +11 -0
  532. package/esm2022/model/user-timezone-setting-create-error-response400.dto.mjs +2 -0
  533. package/esm2022/model/user-timezone-setting-create-error.dto.mjs +2 -0
  534. package/esm2022/model/user-timezone-setting-create-non-field-errors-error-component.dto.mjs +19 -0
  535. package/esm2022/model/user-timezone-setting-create-ordering-error-component.dto.mjs +20 -0
  536. package/esm2022/model/user-timezone-setting-create-use12-format-error-component.dto.mjs +20 -0
  537. package/esm2022/model/user-timezone-setting-create-validation-error.dto.mjs +2 -0
  538. package/esm2022/model/user-timezone-setting-request.dto.mjs +2 -0
  539. package/esm2022/model/user-timezone-setting-retrieve-error-response400.dto.mjs +2 -0
  540. package/esm2022/model/user-timezone-setting.dto.mjs +2 -0
  541. package/esm2022/model/user-timezone.dto.mjs +11 -0
  542. package/esm2022/model/user-timezones-list-error-response400.dto.mjs +2 -0
  543. package/esm2022/model/user-timezones-save-all-create-error-response400.dto.mjs +2 -0
  544. package/esm2022/model/user-timezones-save-all-create-error.dto.mjs +2 -0
  545. package/esm2022/model/user-timezones-save-all-create-index-name-error-component.dto.mjs +24 -0
  546. package/esm2022/model/user-timezones-save-all-create-index-non-field-errors-error-component.dto.mjs +20 -0
  547. package/esm2022/model/user-timezones-save-all-create-index-timezone-error-component.dto.mjs +24 -0
  548. package/esm2022/model/user-timezones-save-all-create-non-field-errors-error-component.dto.mjs +19 -0
  549. package/esm2022/model/user-timezones-save-all-create-validation-error.dto.mjs +2 -0
  550. package/esm2022/model/user.dto.mjs +2 -0
  551. package/esm2022/model/users-create-avatar-error-component.dto.mjs +22 -0
  552. package/esm2022/model/users-create-birthday-error-component.dto.mjs +19 -0
  553. package/esm2022/model/users-create-branch-error-component.dto.mjs +21 -0
  554. package/esm2022/model/users-create-created-by-error-component.dto.mjs +19 -0
  555. package/esm2022/model/users-create-department-error-component.dto.mjs +21 -0
  556. package/esm2022/model/users-create-dismissal-reason-error-component.dto.mjs +19 -0
  557. package/esm2022/model/users-create-email-error-component.dto.mjs +25 -0
  558. package/esm2022/model/users-create-error-response400.dto.mjs +2 -0
  559. package/esm2022/model/users-create-error.dto.mjs +2 -0
  560. package/esm2022/model/users-create-first-name-error-component.dto.mjs +24 -0
  561. package/esm2022/model/users-create-first-working-day-by-contract-error-component.dto.mjs +19 -0
  562. package/esm2022/model/users-create-first-working-day-error-component.dto.mjs +19 -0
  563. package/esm2022/model/users-create-github-username-error-component.dto.mjs +24 -0
  564. package/esm2022/model/users-create-home-phone-error-component.dto.mjs +24 -0
  565. package/esm2022/model/users-create-is-intern-error-component.dto.mjs +20 -0
  566. package/esm2022/model/users-create-is-part-time-error-component.dto.mjs +20 -0
  567. package/esm2022/model/users-create-jira-account-id-error-component.dto.mjs +23 -0
  568. package/esm2022/model/users-create-last-name-error-component.dto.mjs +24 -0
  569. package/esm2022/model/users-create-last-working-day-error-component.dto.mjs +19 -0
  570. package/esm2022/model/users-create-location-error-component.dto.mjs +21 -0
  571. package/esm2022/model/users-create-middle-name-error-component.dto.mjs +22 -0
  572. package/esm2022/model/users-create-non-field-errors-error-component.dto.mjs +19 -0
  573. package/esm2022/model/users-create-office-phone-error-component.dto.mjs +24 -0
  574. package/esm2022/model/users-create-onsite-error-component.dto.mjs +20 -0
  575. package/esm2022/model/users-create-personal-email-error-component.dto.mjs +24 -0
  576. package/esm2022/model/users-create-personal-phone-error-component.dto.mjs +24 -0
  577. package/esm2022/model/users-create-recruited-by-error-component.dto.mjs +19 -0
  578. package/esm2022/model/users-create-role-error-component.dto.mjs +19 -0
  579. package/esm2022/model/users-create-skype-error-component.dto.mjs +24 -0
  580. package/esm2022/model/users-create-slack-id-error-component.dto.mjs +24 -0
  581. package/esm2022/model/users-create-status-error-component.dto.mjs +20 -0
  582. package/esm2022/model/users-create-supervisees-error-component.dto.mjs +22 -0
  583. package/esm2022/model/users-create-supervisors-error-component.dto.mjs +22 -0
  584. package/esm2022/model/users-create-timezone-error-component.dto.mjs +24 -0
  585. package/esm2022/model/users-create-updated-by-error-component.dto.mjs +19 -0
  586. package/esm2022/model/users-create-utilization-percent-error-component.dto.mjs +23 -0
  587. package/esm2022/model/users-create-validation-error.dto.mjs +2 -0
  588. package/esm2022/model/users-create-vendor-error-component.dto.mjs +19 -0
  589. package/esm2022/model/users-create-work-type-error-component.dto.mjs +21 -0
  590. package/esm2022/model/users-list-branch-error-component.dto.mjs +18 -0
  591. package/esm2022/model/users-list-branch-in-error-component.dto.mjs +18 -0
  592. package/esm2022/model/users-list-department-error-component.dto.mjs +18 -0
  593. package/esm2022/model/users-list-department-in-error-component.dto.mjs +18 -0
  594. package/esm2022/model/users-list-error-response400.dto.mjs +2 -0
  595. package/esm2022/model/users-list-error.dto.mjs +2 -0
  596. package/esm2022/model/users-list-id-error-component.dto.mjs +19 -0
  597. package/esm2022/model/users-list-id-in-error-component.dto.mjs +19 -0
  598. package/esm2022/model/users-list-status-error-component.dto.mjs +18 -0
  599. package/esm2022/model/users-list-status-in-error-component.dto.mjs +18 -0
  600. package/esm2022/model/users-list-supervisees-id-in-error-component.dto.mjs +19 -0
  601. package/esm2022/model/users-list-supervisors-id-in-error-component.dto.mjs +19 -0
  602. package/esm2022/model/users-list-validation-error.dto.mjs +2 -0
  603. package/esm2022/model/users-list-work-type-error-component.dto.mjs +18 -0
  604. package/esm2022/model/users-list-work-type-in-error-component.dto.mjs +18 -0
  605. package/esm2022/model/users-retrieve-error-response400.dto.mjs +2 -0
  606. package/esm2022/model/users-update-avatar-error-component.dto.mjs +22 -0
  607. package/esm2022/model/users-update-birthday-error-component.dto.mjs +19 -0
  608. package/esm2022/model/users-update-branch-error-component.dto.mjs +21 -0
  609. package/esm2022/model/users-update-created-by-error-component.dto.mjs +19 -0
  610. package/esm2022/model/users-update-department-error-component.dto.mjs +21 -0
  611. package/esm2022/model/users-update-dismissal-reason-error-component.dto.mjs +19 -0
  612. package/esm2022/model/users-update-email-error-component.dto.mjs +25 -0
  613. package/esm2022/model/users-update-error-response400.dto.mjs +2 -0
  614. package/esm2022/model/users-update-error.dto.mjs +2 -0
  615. package/esm2022/model/users-update-first-name-error-component.dto.mjs +24 -0
  616. package/esm2022/model/users-update-first-working-day-by-contract-error-component.dto.mjs +19 -0
  617. package/esm2022/model/users-update-first-working-day-error-component.dto.mjs +19 -0
  618. package/esm2022/model/users-update-github-username-error-component.dto.mjs +24 -0
  619. package/esm2022/model/users-update-home-phone-error-component.dto.mjs +24 -0
  620. package/esm2022/model/users-update-is-intern-error-component.dto.mjs +20 -0
  621. package/esm2022/model/users-update-is-part-time-error-component.dto.mjs +20 -0
  622. package/esm2022/model/users-update-jira-account-id-error-component.dto.mjs +23 -0
  623. package/esm2022/model/users-update-last-name-error-component.dto.mjs +24 -0
  624. package/esm2022/model/users-update-last-working-day-error-component.dto.mjs +19 -0
  625. package/esm2022/model/users-update-location-error-component.dto.mjs +21 -0
  626. package/esm2022/model/users-update-middle-name-error-component.dto.mjs +22 -0
  627. package/esm2022/model/users-update-non-field-errors-error-component.dto.mjs +19 -0
  628. package/esm2022/model/users-update-office-phone-error-component.dto.mjs +24 -0
  629. package/esm2022/model/users-update-onsite-error-component.dto.mjs +20 -0
  630. package/esm2022/model/users-update-personal-email-error-component.dto.mjs +24 -0
  631. package/esm2022/model/users-update-personal-phone-error-component.dto.mjs +24 -0
  632. package/esm2022/model/users-update-recruited-by-error-component.dto.mjs +19 -0
  633. package/esm2022/model/users-update-role-error-component.dto.mjs +19 -0
  634. package/esm2022/model/users-update-skype-error-component.dto.mjs +24 -0
  635. package/esm2022/model/users-update-slack-id-error-component.dto.mjs +24 -0
  636. package/esm2022/model/users-update-status-error-component.dto.mjs +20 -0
  637. package/esm2022/model/users-update-supervisees-error-component.dto.mjs +22 -0
  638. package/esm2022/model/users-update-supervisors-error-component.dto.mjs +22 -0
  639. package/esm2022/model/users-update-timezone-error-component.dto.mjs +24 -0
  640. package/esm2022/model/users-update-updated-by-error-component.dto.mjs +19 -0
  641. package/esm2022/model/users-update-utilization-percent-error-component.dto.mjs +23 -0
  642. package/esm2022/model/users-update-validation-error.dto.mjs +2 -0
  643. package/esm2022/model/users-update-vendor-error-component.dto.mjs +19 -0
  644. package/esm2022/model/users-update-work-type-error-component.dto.mjs +21 -0
  645. package/esm2022/model/validation-error-enum.dto.mjs +17 -0
  646. package/esm2022/model/vendors-create-error-response400.dto.mjs +2 -0
  647. package/esm2022/model/vendors-create-error.dto.mjs +2 -0
  648. package/esm2022/model/vendors-create-name-error-component.dto.mjs +25 -0
  649. package/esm2022/model/vendors-create-non-field-errors-error-component.dto.mjs +19 -0
  650. package/esm2022/model/vendors-create-validation-error.dto.mjs +2 -0
  651. package/esm2022/model/vendors-destroy-error-response400.dto.mjs +2 -0
  652. package/esm2022/model/vendors-list-error-response400.dto.mjs +2 -0
  653. package/esm2022/model/vendors-list-error.dto.mjs +2 -0
  654. package/esm2022/model/vendors-list-id-error-component.dto.mjs +19 -0
  655. package/esm2022/model/vendors-list-id-in-error-component.dto.mjs +19 -0
  656. package/esm2022/model/vendors-list-validation-error.dto.mjs +2 -0
  657. package/esm2022/model/vendors-retrieve-error-response400.dto.mjs +2 -0
  658. package/esm2022/model/vendors-update-error-response400.dto.mjs +2 -0
  659. package/esm2022/model/vendors-update-error.dto.mjs +2 -0
  660. package/esm2022/model/vendors-update-name-error-component.dto.mjs +25 -0
  661. package/esm2022/model/vendors-update-non-field-errors-error-component.dto.mjs +19 -0
  662. package/esm2022/model/vendors-update-validation-error.dto.mjs +2 -0
  663. package/esm2022/model/who-am-i-retrieve-error-response400.dto.mjs +2 -0
  664. package/esm2022/model/who-am-i.dto.mjs +2 -0
  665. package/esm2022/model/work-type-request.dto.mjs +11 -0
  666. package/esm2022/model/work-type.dto.mjs +2 -0
  667. package/esm2022/model/work-types-create-department-error-component.dto.mjs +19 -0
  668. package/esm2022/model/work-types-create-error-response400.dto.mjs +2 -0
  669. package/esm2022/model/work-types-create-error.dto.mjs +2 -0
  670. package/esm2022/model/work-types-create-name-error-component.dto.mjs +25 -0
  671. package/esm2022/model/work-types-create-non-field-errors-error-component.dto.mjs +19 -0
  672. package/esm2022/model/work-types-create-parent-error-component.dto.mjs +19 -0
  673. package/esm2022/model/work-types-create-validation-error.dto.mjs +2 -0
  674. package/esm2022/model/work-types-destroy-error-response400.dto.mjs +2 -0
  675. package/esm2022/model/work-types-list-department-error-component.dto.mjs +18 -0
  676. package/esm2022/model/work-types-list-department-in-error-component.dto.mjs +18 -0
  677. package/esm2022/model/work-types-list-error-response400.dto.mjs +2 -0
  678. package/esm2022/model/work-types-list-error.dto.mjs +2 -0
  679. package/esm2022/model/work-types-list-id-error-component.dto.mjs +19 -0
  680. package/esm2022/model/work-types-list-id-in-error-component.dto.mjs +19 -0
  681. package/esm2022/model/work-types-list-parent-error-component.dto.mjs +18 -0
  682. package/esm2022/model/work-types-list-parent-in-error-component.dto.mjs +18 -0
  683. package/esm2022/model/work-types-list-validation-error.dto.mjs +2 -0
  684. package/esm2022/model/work-types-retrieve-error-response400.dto.mjs +2 -0
  685. package/esm2022/model/work-types-update-department-error-component.dto.mjs +19 -0
  686. package/esm2022/model/work-types-update-error-response400.dto.mjs +2 -0
  687. package/esm2022/model/work-types-update-error.dto.mjs +2 -0
  688. package/esm2022/model/work-types-update-name-error-component.dto.mjs +25 -0
  689. package/esm2022/model/work-types-update-non-field-errors-error-component.dto.mjs +19 -0
  690. package/esm2022/model/work-types-update-parent-error-component.dto.mjs +19 -0
  691. package/esm2022/model/work-types-update-validation-error.dto.mjs +2 -0
  692. package/esm2022/param.mjs +2 -0
  693. package/esm2022/saritasa-crm-delmar-core-sdk.mjs +5 -0
  694. package/esm2022/variables.mjs +9 -0
  695. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +14555 -0
  696. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -0
  697. package/index.d.ts +6 -0
  698. package/model/branch-period-request.dto.d.ts +21 -0
  699. package/model/branch-period-type-enum.dto.d.ts +16 -0
  700. package/model/branch-period.dto.d.ts +26 -0
  701. package/model/branch-periods-create-branch-error-component.dto.d.ts +29 -0
  702. package/model/branch-periods-create-description-error-component.dto.d.ts +31 -0
  703. package/model/branch-periods-create-error-response400.dto.d.ts +16 -0
  704. package/model/branch-periods-create-error.dto.d.ts +22 -0
  705. package/model/branch-periods-create-non-field-errors-error-component.dto.d.ts +27 -0
  706. package/model/branch-periods-create-period-end-error-component.dto.d.ts +28 -0
  707. package/model/branch-periods-create-period-non-field-errors-error-component.dto.d.ts +28 -0
  708. package/model/branch-periods-create-period-start-error-component.dto.d.ts +28 -0
  709. package/model/branch-periods-create-title-error-component.dto.d.ts +32 -0
  710. package/model/branch-periods-create-type-error-component.dto.d.ts +28 -0
  711. package/model/branch-periods-create-validation-error.dto.d.ts +15 -0
  712. package/model/branch-periods-destroy-error-response400.dto.d.ts +15 -0
  713. package/model/branch-periods-list-error-response400.dto.d.ts +15 -0
  714. package/model/branch-periods-retrieve-error-response400.dto.d.ts +15 -0
  715. package/model/branch-periods-update-branch-error-component.dto.d.ts +29 -0
  716. package/model/branch-periods-update-description-error-component.dto.d.ts +31 -0
  717. package/model/branch-periods-update-error-response400.dto.d.ts +16 -0
  718. package/model/branch-periods-update-error.dto.d.ts +22 -0
  719. package/model/branch-periods-update-non-field-errors-error-component.dto.d.ts +27 -0
  720. package/model/branch-periods-update-period-end-error-component.dto.d.ts +28 -0
  721. package/model/branch-periods-update-period-non-field-errors-error-component.dto.d.ts +28 -0
  722. package/model/branch-periods-update-period-start-error-component.dto.d.ts +28 -0
  723. package/model/branch-periods-update-title-error-component.dto.d.ts +32 -0
  724. package/model/branch-periods-update-type-error-component.dto.d.ts +28 -0
  725. package/model/branch-periods-update-validation-error.dto.d.ts +15 -0
  726. package/model/branch-request.dto.d.ts +29 -0
  727. package/model/branch-user-stats.dto.d.ts +22 -0
  728. package/model/branch.dto.d.ts +34 -0
  729. package/model/branches-create-address1-error-component.dto.d.ts +32 -0
  730. package/model/branches-create-address2-error-component.dto.d.ts +32 -0
  731. package/model/branches-create-ceo-error-component.dto.d.ts +27 -0
  732. package/model/branches-create-code-error-component.dto.d.ts +33 -0
  733. package/model/branches-create-country-error-component.dto.d.ts +32 -0
  734. package/model/branches-create-error-response400.dto.d.ts +16 -0
  735. package/model/branches-create-error.dto.d.ts +30 -0
  736. package/model/branches-create-hr-email-error-component.dto.d.ts +32 -0
  737. package/model/branches-create-icon-error-component.dto.d.ts +30 -0
  738. package/model/branches-create-is-oversea-error-component.dto.d.ts +28 -0
  739. package/model/branches-create-is-vacation-file-required-error-component.dto.d.ts +28 -0
  740. package/model/branches-create-name-error-component.dto.d.ts +33 -0
  741. package/model/branches-create-non-field-errors-error-component.dto.d.ts +27 -0
  742. package/model/branches-create-postal-code-error-component.dto.d.ts +32 -0
  743. package/model/branches-create-state-error-component.dto.d.ts +32 -0
  744. package/model/branches-create-timezone-error-component.dto.d.ts +32 -0
  745. package/model/branches-create-vacation-days-count-error-component.dto.d.ts +31 -0
  746. package/model/branches-create-vacation-period-error-component.dto.d.ts +31 -0
  747. package/model/branches-create-validation-error.dto.d.ts +15 -0
  748. package/model/branches-destroy-error-response400.dto.d.ts +15 -0
  749. package/model/branches-list-error-response400.dto.d.ts +16 -0
  750. package/model/branches-list-error.dto.d.ts +16 -0
  751. package/model/branches-list-id-error-component.dto.d.ts +27 -0
  752. package/model/branches-list-id-in-error-component.dto.d.ts +27 -0
  753. package/model/branches-list-validation-error.dto.d.ts +15 -0
  754. package/model/branches-retrieve-error-response400.dto.d.ts +15 -0
  755. package/model/branches-update-address1-error-component.dto.d.ts +32 -0
  756. package/model/branches-update-address2-error-component.dto.d.ts +32 -0
  757. package/model/branches-update-ceo-error-component.dto.d.ts +27 -0
  758. package/model/branches-update-code-error-component.dto.d.ts +33 -0
  759. package/model/branches-update-country-error-component.dto.d.ts +32 -0
  760. package/model/branches-update-error-response400.dto.d.ts +16 -0
  761. package/model/branches-update-error.dto.d.ts +30 -0
  762. package/model/branches-update-hr-email-error-component.dto.d.ts +32 -0
  763. package/model/branches-update-icon-error-component.dto.d.ts +30 -0
  764. package/model/branches-update-is-oversea-error-component.dto.d.ts +28 -0
  765. package/model/branches-update-is-vacation-file-required-error-component.dto.d.ts +28 -0
  766. package/model/branches-update-name-error-component.dto.d.ts +33 -0
  767. package/model/branches-update-non-field-errors-error-component.dto.d.ts +27 -0
  768. package/model/branches-update-postal-code-error-component.dto.d.ts +32 -0
  769. package/model/branches-update-state-error-component.dto.d.ts +32 -0
  770. package/model/branches-update-timezone-error-component.dto.d.ts +32 -0
  771. package/model/branches-update-vacation-days-count-error-component.dto.d.ts +31 -0
  772. package/model/branches-update-vacation-period-error-component.dto.d.ts +31 -0
  773. package/model/branches-update-validation-error.dto.d.ts +15 -0
  774. package/model/branches-users-stats-list-error-response400.dto.d.ts +16 -0
  775. package/model/branches-users-stats-list-error.dto.d.ts +17 -0
  776. package/model/branches-users-stats-list-id-error-component.dto.d.ts +27 -0
  777. package/model/branches-users-stats-list-id-in-error-component.dto.d.ts +27 -0
  778. package/model/branches-users-stats-list-users-search-error-component.dto.d.ts +26 -0
  779. package/model/branches-users-stats-list-validation-error.dto.d.ts +15 -0
  780. package/model/client-error-enum.dto.d.ts +15 -0
  781. package/model/config-enum.dto.d.ts +19 -0
  782. package/model/create-jira-project-request.dto.d.ts +17 -0
  783. package/model/create-jira-project.dto.d.ts +17 -0
  784. package/model/date-range-field-request.dto.d.ts +16 -0
  785. package/model/date-range-field.dto.d.ts +16 -0
  786. package/model/debug-login-request.dto.d.ts +15 -0
  787. package/model/department-request.dto.d.ts +17 -0
  788. package/model/department.dto.d.ts +30 -0
  789. package/model/departments-create-error-response400.dto.d.ts +16 -0
  790. package/model/departments-create-error.dto.d.ts +18 -0
  791. package/model/departments-create-name-error-component.dto.d.ts +33 -0
  792. package/model/departments-create-non-field-errors-error-component.dto.d.ts +27 -0
  793. package/model/departments-create-utilization-error-component.dto.d.ts +28 -0
  794. package/model/departments-create-validation-error.dto.d.ts +15 -0
  795. package/model/departments-create-work-types-error-component.dto.d.ts +30 -0
  796. package/model/departments-destroy-error-response400.dto.d.ts +15 -0
  797. package/model/departments-list-error-response400.dto.d.ts +16 -0
  798. package/model/departments-list-error.dto.d.ts +19 -0
  799. package/model/departments-list-id-error-component.dto.d.ts +27 -0
  800. package/model/departments-list-id-in-error-component.dto.d.ts +27 -0
  801. package/model/departments-list-name-error-component.dto.d.ts +26 -0
  802. package/model/departments-list-name-in-error-component.dto.d.ts +26 -0
  803. package/model/departments-list-validation-error.dto.d.ts +15 -0
  804. package/model/departments-list-work-types-id-in-error-component.dto.d.ts +27 -0
  805. package/model/departments-retrieve-error-response400.dto.d.ts +15 -0
  806. package/model/departments-update-error-response400.dto.d.ts +16 -0
  807. package/model/departments-update-error.dto.d.ts +18 -0
  808. package/model/departments-update-name-error-component.dto.d.ts +33 -0
  809. package/model/departments-update-non-field-errors-error-component.dto.d.ts +27 -0
  810. package/model/departments-update-utilization-error-component.dto.d.ts +28 -0
  811. package/model/departments-update-validation-error.dto.d.ts +15 -0
  812. package/model/departments-update-work-types-error-component.dto.d.ts +30 -0
  813. package/model/dismissal-reasons-create-error-response400.dto.d.ts +16 -0
  814. package/model/dismissal-reasons-create-error.dto.d.ts +17 -0
  815. package/model/dismissal-reasons-create-name-error-component.dto.d.ts +33 -0
  816. package/model/dismissal-reasons-create-non-field-errors-error-component.dto.d.ts +27 -0
  817. package/model/dismissal-reasons-create-type-error-component.dto.d.ts +28 -0
  818. package/model/dismissal-reasons-create-validation-error.dto.d.ts +15 -0
  819. package/model/dismissal-reasons-destroy-error-response400.dto.d.ts +15 -0
  820. package/model/dismissal-reasons-list-error-response400.dto.d.ts +16 -0
  821. package/model/dismissal-reasons-list-error.dto.d.ts +20 -0
  822. package/model/dismissal-reasons-list-id-error-component.dto.d.ts +27 -0
  823. package/model/dismissal-reasons-list-id-in-error-component.dto.d.ts +27 -0
  824. package/model/dismissal-reasons-list-name-error-component.dto.d.ts +26 -0
  825. package/model/dismissal-reasons-list-name-in-error-component.dto.d.ts +26 -0
  826. package/model/dismissal-reasons-list-type-error-component.dto.d.ts +26 -0
  827. package/model/dismissal-reasons-list-type-in-error-component.dto.d.ts +26 -0
  828. package/model/dismissal-reasons-list-validation-error.dto.d.ts +15 -0
  829. package/model/dismissal-reasons-retrieve-error-response400.dto.d.ts +15 -0
  830. package/model/dismissal-reasons-update-error-response400.dto.d.ts +16 -0
  831. package/model/dismissal-reasons-update-error.dto.d.ts +17 -0
  832. package/model/dismissal-reasons-update-name-error-component.dto.d.ts +33 -0
  833. package/model/dismissal-reasons-update-non-field-errors-error-component.dto.d.ts +27 -0
  834. package/model/dismissal-reasons-update-type-error-component.dto.d.ts +28 -0
  835. package/model/dismissal-reasons-update-validation-error.dto.d.ts +15 -0
  836. package/model/error-code401-enum.dto.d.ts +16 -0
  837. package/model/error-code403-enum.dto.d.ts +15 -0
  838. package/model/error-code404-enum.dto.d.ts +15 -0
  839. package/model/error-code405-enum.dto.d.ts +15 -0
  840. package/model/error-code406-enum.dto.d.ts +15 -0
  841. package/model/error-code415-enum.dto.d.ts +15 -0
  842. package/model/error-code500-enum.dto.d.ts +15 -0
  843. package/model/error-response401.dto.d.ts +15 -0
  844. package/model/error-response403.dto.d.ts +15 -0
  845. package/model/error-response404.dto.d.ts +15 -0
  846. package/model/error-response405.dto.d.ts +15 -0
  847. package/model/error-response406.dto.d.ts +15 -0
  848. package/model/error-response415.dto.d.ts +15 -0
  849. package/model/error-response500.dto.d.ts +15 -0
  850. package/model/error401.dto.d.ts +15 -0
  851. package/model/error403.dto.d.ts +15 -0
  852. package/model/error404.dto.d.ts +15 -0
  853. package/model/error405.dto.d.ts +15 -0
  854. package/model/error406.dto.d.ts +15 -0
  855. package/model/error415.dto.d.ts +15 -0
  856. package/model/error500.dto.d.ts +15 -0
  857. package/model/group-enum.dto.d.ts +16 -0
  858. package/model/jira-client-create-project-create-error-response400.dto.d.ts +16 -0
  859. package/model/jira-client-create-project-create-error.dto.d.ts +18 -0
  860. package/model/jira-client-create-project-create-instance-error-component.dto.d.ts +29 -0
  861. package/model/jira-client-create-project-create-lead-email-error-component.dto.d.ts +31 -0
  862. package/model/jira-client-create-project-create-non-field-errors-error-component.dto.d.ts +27 -0
  863. package/model/jira-client-create-project-create-project-name-error-component.dto.d.ts +31 -0
  864. package/model/jira-client-create-project-create-validation-error.dto.d.ts +15 -0
  865. package/model/jira-instance.dto.d.ts +16 -0
  866. package/model/jira-instances-list-error-response400.dto.d.ts +15 -0
  867. package/model/jira-instances-retrieve-error-response400.dto.d.ts +15 -0
  868. package/model/location-request.dto.d.ts +17 -0
  869. package/model/location.dto.d.ts +24 -0
  870. package/model/locations-create-error-response400.dto.d.ts +16 -0
  871. package/model/locations-create-error.dto.d.ts +18 -0
  872. package/model/locations-create-icon-error-component.dto.d.ts +30 -0
  873. package/model/locations-create-name-error-component.dto.d.ts +32 -0
  874. package/model/locations-create-non-field-errors-error-component.dto.d.ts +28 -0
  875. package/model/locations-create-timezone-error-component.dto.d.ts +32 -0
  876. package/model/locations-create-validation-error.dto.d.ts +15 -0
  877. package/model/locations-destroy-error-response400.dto.d.ts +15 -0
  878. package/model/locations-list-error-response400.dto.d.ts +16 -0
  879. package/model/locations-list-error.dto.d.ts +20 -0
  880. package/model/locations-list-id-error-component.dto.d.ts +27 -0
  881. package/model/locations-list-id-in-error-component.dto.d.ts +27 -0
  882. package/model/locations-list-name-error-component.dto.d.ts +26 -0
  883. package/model/locations-list-name-in-error-component.dto.d.ts +26 -0
  884. package/model/locations-list-timezone-error-component.dto.d.ts +26 -0
  885. package/model/locations-list-timezone-in-error-component.dto.d.ts +26 -0
  886. package/model/locations-list-validation-error.dto.d.ts +15 -0
  887. package/model/locations-retrieve-error-response400.dto.d.ts +15 -0
  888. package/model/locations-update-error-response400.dto.d.ts +16 -0
  889. package/model/locations-update-error.dto.d.ts +18 -0
  890. package/model/locations-update-icon-error-component.dto.d.ts +30 -0
  891. package/model/locations-update-name-error-component.dto.d.ts +32 -0
  892. package/model/locations-update-non-field-errors-error-component.dto.d.ts +28 -0
  893. package/model/locations-update-timezone-error-component.dto.d.ts +32 -0
  894. package/model/locations-update-validation-error.dto.d.ts +15 -0
  895. package/model/login-open-id-request.dto.d.ts +15 -0
  896. package/model/models.d.ts +584 -0
  897. package/model/open-id-code-exchange-request.dto.d.ts +16 -0
  898. package/model/open-id-redirect.dto.d.ts +15 -0
  899. package/model/ordering-enum.dto.d.ts +16 -0
  900. package/model/paginated-branch-list.dto.d.ts +16 -0
  901. package/model/paginated-branch-period-list.dto.d.ts +16 -0
  902. package/model/paginated-branch-user-stats-list.dto.d.ts +16 -0
  903. package/model/paginated-department-list.dto.d.ts +16 -0
  904. package/model/paginated-jira-instance-list.dto.d.ts +16 -0
  905. package/model/paginated-location-list.dto.d.ts +16 -0
  906. package/model/paginated-project-list.dto.d.ts +16 -0
  907. package/model/paginated-role-list.dto.d.ts +16 -0
  908. package/model/paginated-simple-dismissal-reason-list.dto.d.ts +16 -0
  909. package/model/paginated-simple-vendor-list.dto.d.ts +16 -0
  910. package/model/paginated-user-capacity-list.dto.d.ts +16 -0
  911. package/model/paginated-user-list.dto.d.ts +16 -0
  912. package/model/paginated-user-login-list.dto.d.ts +16 -0
  913. package/model/paginated-user-period-list.dto.d.ts +16 -0
  914. package/model/paginated-user-sum-capacity-list.dto.d.ts +16 -0
  915. package/model/paginated-user-timezone-list.dto.d.ts +16 -0
  916. package/model/paginated-work-type-list.dto.d.ts +16 -0
  917. package/model/parse-error-code-enum.dto.d.ts +15 -0
  918. package/model/parse-error-response.dto.d.ts +15 -0
  919. package/model/parse-error.dto.d.ts +15 -0
  920. package/model/period-model-enum.dto.d.ts +17 -0
  921. package/model/period-type-enum.dto.d.ts +23 -0
  922. package/model/period-user.dto.d.ts +37 -0
  923. package/model/period.dto.d.ts +33 -0
  924. package/model/permission-data-request.dto.d.ts +18 -0
  925. package/model/permission-data-retrieve-error-response400.dto.d.ts +15 -0
  926. package/model/permission-data.dto.d.ts +18 -0
  927. package/model/permission-enum.dto.d.ts +21 -0
  928. package/model/profile-request.dto.d.ts +28 -0
  929. package/model/profile-retrieve-error-response400.dto.d.ts +15 -0
  930. package/model/profile-update-avatar-error-component.dto.d.ts +30 -0
  931. package/model/profile-update-branch-error-component.dto.d.ts +29 -0
  932. package/model/profile-update-created-by-error-component.dto.d.ts +27 -0
  933. package/model/profile-update-department-error-component.dto.d.ts +29 -0
  934. package/model/profile-update-dismissal-reason-error-component.dto.d.ts +27 -0
  935. package/model/profile-update-error-response400.dto.d.ts +16 -0
  936. package/model/profile-update-error.dto.d.ts +29 -0
  937. package/model/profile-update-first-name-error-component.dto.d.ts +32 -0
  938. package/model/profile-update-last-name-error-component.dto.d.ts +32 -0
  939. package/model/profile-update-location-error-component.dto.d.ts +29 -0
  940. package/model/profile-update-middle-name-error-component.dto.d.ts +30 -0
  941. package/model/profile-update-non-field-errors-error-component.dto.d.ts +27 -0
  942. package/model/profile-update-recruited-by-error-component.dto.d.ts +27 -0
  943. package/model/profile-update-role-error-component.dto.d.ts +27 -0
  944. package/model/profile-update-updated-by-error-component.dto.d.ts +27 -0
  945. package/model/profile-update-validation-error.dto.d.ts +15 -0
  946. package/model/profile-update-vendor-error-component.dto.d.ts +27 -0
  947. package/model/profile-update-work-type-error-component.dto.d.ts +29 -0
  948. package/model/profile.dto.d.ts +78 -0
  949. package/model/project.dto.d.ts +17 -0
  950. package/model/projects-list-error-response400.dto.d.ts +15 -0
  951. package/model/projects-retrieve-error-response400.dto.d.ts +15 -0
  952. package/model/role-edit-permission-request.dto.d.ts +18 -0
  953. package/model/role-edit-permission.dto.d.ts +23 -0
  954. package/model/role-request.dto.d.ts +17 -0
  955. package/model/role.dto.d.ts +20 -0
  956. package/model/roles-create-error-response400.dto.d.ts +16 -0
  957. package/model/roles-create-error.dto.d.ts +20 -0
  958. package/model/roles-create-name-error-component.dto.d.ts +33 -0
  959. package/model/roles-create-non-field-errors-error-component.dto.d.ts +27 -0
  960. package/model/roles-create-permissions-index-non-field-errors-error-component.dto.d.ts +28 -0
  961. package/model/roles-create-permissions-index-permission-error-component.dto.d.ts +28 -0
  962. package/model/roles-create-permissions-index-scope-error-component.dto.d.ts +28 -0
  963. package/model/roles-create-permissions-non-field-errors-error-component.dto.d.ts +28 -0
  964. package/model/roles-create-validation-error.dto.d.ts +15 -0
  965. package/model/roles-destroy-error-response400.dto.d.ts +15 -0
  966. package/model/roles-list-error-response400.dto.d.ts +16 -0
  967. package/model/roles-list-error.dto.d.ts +18 -0
  968. package/model/roles-list-permissions-permission-error-component.dto.d.ts +26 -0
  969. package/model/roles-list-permissions-permission-in-error-component.dto.d.ts +26 -0
  970. package/model/roles-list-permissions-scope-error-component.dto.d.ts +26 -0
  971. package/model/roles-list-permissions-scope-in-error-component.dto.d.ts +26 -0
  972. package/model/roles-list-validation-error.dto.d.ts +15 -0
  973. package/model/roles-retrieve-error-response400.dto.d.ts +15 -0
  974. package/model/roles-update-error-response400.dto.d.ts +16 -0
  975. package/model/roles-update-error.dto.d.ts +20 -0
  976. package/model/roles-update-name-error-component.dto.d.ts +33 -0
  977. package/model/roles-update-non-field-errors-error-component.dto.d.ts +27 -0
  978. package/model/roles-update-permissions-index-non-field-errors-error-component.dto.d.ts +28 -0
  979. package/model/roles-update-permissions-index-permission-error-component.dto.d.ts +28 -0
  980. package/model/roles-update-permissions-index-scope-error-component.dto.d.ts +28 -0
  981. package/model/roles-update-permissions-non-field-errors-error-component.dto.d.ts +28 -0
  982. package/model/roles-update-validation-error.dto.d.ts +15 -0
  983. package/model/s3-get-params-create-config-error-component.dto.d.ts +28 -0
  984. package/model/s3-get-params-create-content-length-error-component.dto.d.ts +29 -0
  985. package/model/s3-get-params-create-content-type-error-component.dto.d.ts +31 -0
  986. package/model/s3-get-params-create-error-response400.dto.d.ts +16 -0
  987. package/model/s3-get-params-create-error.dto.d.ts +19 -0
  988. package/model/s3-get-params-create-filename-error-component.dto.d.ts +31 -0
  989. package/model/s3-get-params-create-non-field-errors-error-component.dto.d.ts +27 -0
  990. package/model/s3-get-params-create-validation-error.dto.d.ts +15 -0
  991. package/model/s3-params.dto.d.ts +26 -0
  992. package/model/s3-request-params-request.dto.d.ts +19 -0
  993. package/model/s3-upload.dto.d.ts +17 -0
  994. package/model/scope-enum.dto.d.ts +19 -0
  995. package/model/search-periods-list-branch-in-error-component.dto.d.ts +26 -0
  996. package/model/search-periods-list-error-response400.dto.d.ts +16 -0
  997. package/model/search-periods-list-error.dto.d.ts +26 -0
  998. package/model/search-periods-list-period-gte-error-component.dto.d.ts +27 -0
  999. package/model/search-periods-list-period-lte-error-component.dto.d.ts +27 -0
  1000. package/model/search-periods-list-status-error-component.dto.d.ts +26 -0
  1001. package/model/search-periods-list-type-error-component.dto.d.ts +26 -0
  1002. package/model/search-periods-list-user-branch-in-error-component.dto.d.ts +26 -0
  1003. package/model/search-periods-list-user-department-in-error-component.dto.d.ts +26 -0
  1004. package/model/search-periods-list-user-in-error-component.dto.d.ts +26 -0
  1005. package/model/search-periods-list-user-status-in-error-component.dto.d.ts +26 -0
  1006. package/model/search-periods-list-user-supervisees-error-component.dto.d.ts +26 -0
  1007. package/model/search-periods-list-user-supervisors-error-component.dto.d.ts +26 -0
  1008. package/model/search-periods-list-user-work-type-in-error-component.dto.d.ts +26 -0
  1009. package/model/search-periods-list-validation-error.dto.d.ts +15 -0
  1010. package/model/server-error-enum.dto.d.ts +15 -0
  1011. package/model/simple-branch-request.dto.d.ts +15 -0
  1012. package/model/simple-branch.dto.d.ts +18 -0
  1013. package/model/simple-department-request.dto.d.ts +15 -0
  1014. package/model/simple-department.dto.d.ts +18 -0
  1015. package/model/simple-dismissal-reason-request.dto.d.ts +17 -0
  1016. package/model/simple-dismissal-reason-type-enum.dto.d.ts +16 -0
  1017. package/model/simple-dismissal-reason.dto.d.ts +20 -0
  1018. package/model/simple-location-request.dto.d.ts +15 -0
  1019. package/model/simple-location.dto.d.ts +18 -0
  1020. package/model/simple-role-request.dto.d.ts +15 -0
  1021. package/model/simple-role.dto.d.ts +18 -0
  1022. package/model/simple-user-request.dto.d.ts +19 -0
  1023. package/model/simple-user.dto.d.ts +22 -0
  1024. package/model/simple-vendor-request.dto.d.ts +15 -0
  1025. package/model/simple-vendor.dto.d.ts +18 -0
  1026. package/model/simple-work-type-request.dto.d.ts +15 -0
  1027. package/model/simple-work-type.dto.d.ts +18 -0
  1028. package/model/sso-code-exchange-create-code-error-component.dto.d.ts +31 -0
  1029. package/model/sso-code-exchange-create-error-response400.dto.d.ts +16 -0
  1030. package/model/sso-code-exchange-create-error.dto.d.ts +17 -0
  1031. package/model/sso-code-exchange-create-non-field-errors-error-component.dto.d.ts +27 -0
  1032. package/model/sso-code-exchange-create-redirect-uri-error-component.dto.d.ts +30 -0
  1033. package/model/sso-code-exchange-create-validation-error.dto.d.ts +15 -0
  1034. package/model/sso-debug-create-email-error-component.dto.d.ts +31 -0
  1035. package/model/sso-debug-create-error-response400.dto.d.ts +16 -0
  1036. package/model/sso-debug-create-error.dto.d.ts +16 -0
  1037. package/model/sso-debug-create-non-field-errors-error-component.dto.d.ts +27 -0
  1038. package/model/sso-debug-create-validation-error.dto.d.ts +15 -0
  1039. package/model/sso-start-create-error-response400.dto.d.ts +16 -0
  1040. package/model/sso-start-create-error.dto.d.ts +16 -0
  1041. package/model/sso-start-create-non-field-errors-error-component.dto.d.ts +27 -0
  1042. package/model/sso-start-create-redirect-uri-error-component.dto.d.ts +30 -0
  1043. package/model/sso-start-create-validation-error.dto.d.ts +15 -0
  1044. package/model/token-obtain-pair.dto.d.ts +13 -0
  1045. package/model/token-refresh-create-error-response400.dto.d.ts +16 -0
  1046. package/model/token-refresh-create-error.dto.d.ts +16 -0
  1047. package/model/token-refresh-create-non-field-errors-error-component.dto.d.ts +27 -0
  1048. package/model/token-refresh-create-refresh-error-component.dto.d.ts +31 -0
  1049. package/model/token-refresh-create-validation-error.dto.d.ts +15 -0
  1050. package/model/token-refresh-request.dto.d.ts +12 -0
  1051. package/model/token-refresh.dto.d.ts +13 -0
  1052. package/model/token-verify-create-error-response400.dto.d.ts +16 -0
  1053. package/model/token-verify-create-error.dto.d.ts +16 -0
  1054. package/model/token-verify-create-non-field-errors-error-component.dto.d.ts +27 -0
  1055. package/model/token-verify-create-token-error-component.dto.d.ts +31 -0
  1056. package/model/token-verify-create-validation-error.dto.d.ts +15 -0
  1057. package/model/token-verify-request.dto.d.ts +12 -0
  1058. package/model/user-capacities-calculate-capacity-create-billable-capacity-error-component.dto.d.ts +29 -0
  1059. package/model/user-capacities-calculate-capacity-create-branch-error-component.dto.d.ts +29 -0
  1060. package/model/user-capacities-calculate-capacity-create-date-error-component.dto.d.ts +29 -0
  1061. package/model/user-capacities-calculate-capacity-create-department-error-component.dto.d.ts +29 -0
  1062. package/model/user-capacities-calculate-capacity-create-error-response400.dto.d.ts +16 -0
  1063. package/model/user-capacities-calculate-capacity-create-error.dto.d.ts +22 -0
  1064. package/model/user-capacities-calculate-capacity-create-non-field-errors-error-component.dto.d.ts +27 -0
  1065. package/model/user-capacities-calculate-capacity-create-total-capacity-error-component.dto.d.ts +29 -0
  1066. package/model/user-capacities-calculate-capacity-create-user-error-component.dto.d.ts +29 -0
  1067. package/model/user-capacities-calculate-capacity-create-validation-error.dto.d.ts +15 -0
  1068. package/model/user-capacities-calculate-capacity-create-work-type-error-component.dto.d.ts +29 -0
  1069. package/model/user-capacities-get-period-capacity-list-date-gte-error-component.dto.d.ts +26 -0
  1070. package/model/user-capacities-get-period-capacity-list-date-lte-error-component.dto.d.ts +26 -0
  1071. package/model/user-capacities-get-period-capacity-list-error-response400.dto.d.ts +16 -0
  1072. package/model/user-capacities-get-period-capacity-list-error.dto.d.ts +18 -0
  1073. package/model/user-capacities-get-period-capacity-list-object-ids-error-component.dto.d.ts +27 -0
  1074. package/model/user-capacities-get-period-capacity-list-period-type-error-component.dto.d.ts +27 -0
  1075. package/model/user-capacities-get-period-capacity-list-validation-error.dto.d.ts +15 -0
  1076. package/model/user-capacities-list-branch-id-error-component.dto.d.ts +27 -0
  1077. package/model/user-capacities-list-branch-id-in-error-component.dto.d.ts +27 -0
  1078. package/model/user-capacities-list-date-gte-error-component.dto.d.ts +26 -0
  1079. package/model/user-capacities-list-date-lte-error-component.dto.d.ts +26 -0
  1080. package/model/user-capacities-list-department-id-error-component.dto.d.ts +27 -0
  1081. package/model/user-capacities-list-department-id-in-error-component.dto.d.ts +27 -0
  1082. package/model/user-capacities-list-error-response400.dto.d.ts +16 -0
  1083. package/model/user-capacities-list-error.dto.d.ts +26 -0
  1084. package/model/user-capacities-list-id-error-component.dto.d.ts +27 -0
  1085. package/model/user-capacities-list-id-in-error-component.dto.d.ts +27 -0
  1086. package/model/user-capacities-list-user-id-error-component.dto.d.ts +27 -0
  1087. package/model/user-capacities-list-user-id-in-error-component.dto.d.ts +27 -0
  1088. package/model/user-capacities-list-validation-error.dto.d.ts +15 -0
  1089. package/model/user-capacities-list-work-type-id-error-component.dto.d.ts +27 -0
  1090. package/model/user-capacities-list-work-type-id-in-error-component.dto.d.ts +27 -0
  1091. package/model/user-capacities-retrieve-error-response400.dto.d.ts +15 -0
  1092. package/model/user-capacity-request.dto.d.ts +21 -0
  1093. package/model/user-capacity.dto.d.ts +24 -0
  1094. package/model/user-login-request.dto.d.ts +16 -0
  1095. package/model/user-login.dto.d.ts +33 -0
  1096. package/model/user-logins-list-branch-error-component.dto.d.ts +26 -0
  1097. package/model/user-logins-list-branch-in-error-component.dto.d.ts +26 -0
  1098. package/model/user-logins-list-department-error-component.dto.d.ts +26 -0
  1099. package/model/user-logins-list-department-in-error-component.dto.d.ts +26 -0
  1100. package/model/user-logins-list-error-response400.dto.d.ts +16 -0
  1101. package/model/user-logins-list-error.dto.d.ts +22 -0
  1102. package/model/user-logins-list-role-error-component.dto.d.ts +26 -0
  1103. package/model/user-logins-list-role-in-error-component.dto.d.ts +26 -0
  1104. package/model/user-logins-list-validation-error.dto.d.ts +15 -0
  1105. package/model/user-logins-list-work-type-error-component.dto.d.ts +26 -0
  1106. package/model/user-logins-list-work-type-in-error-component.dto.d.ts +26 -0
  1107. package/model/user-logins-retrieve-error-response400.dto.d.ts +15 -0
  1108. package/model/user-logins-update-email-error-component.dto.d.ts +33 -0
  1109. package/model/user-logins-update-error-response400.dto.d.ts +16 -0
  1110. package/model/user-logins-update-error.dto.d.ts +17 -0
  1111. package/model/user-logins-update-non-field-errors-error-component.dto.d.ts +27 -0
  1112. package/model/user-logins-update-role-error-component.dto.d.ts +27 -0
  1113. package/model/user-logins-update-validation-error.dto.d.ts +15 -0
  1114. package/model/user-period-status-enum.dto.d.ts +17 -0
  1115. package/model/user-period-type-enum.dto.d.ts +20 -0
  1116. package/model/user-period.dto.d.ts +26 -0
  1117. package/model/user-periods-list-error-response400.dto.d.ts +15 -0
  1118. package/model/user-periods-retrieve-error-response400.dto.d.ts +15 -0
  1119. package/model/user-request.dto.d.ts +53 -0
  1120. package/model/user-status-enum.dto.d.ts +17 -0
  1121. package/model/user-sum-capacity.dto.d.ts +17 -0
  1122. package/model/user-timezone-request.dto.d.ts +16 -0
  1123. package/model/user-timezone-setting-create-error-response400.dto.d.ts +16 -0
  1124. package/model/user-timezone-setting-create-error.dto.d.ts +17 -0
  1125. package/model/user-timezone-setting-create-non-field-errors-error-component.dto.d.ts +27 -0
  1126. package/model/user-timezone-setting-create-ordering-error-component.dto.d.ts +28 -0
  1127. package/model/user-timezone-setting-create-use12-format-error-component.dto.d.ts +28 -0
  1128. package/model/user-timezone-setting-create-validation-error.dto.d.ts +15 -0
  1129. package/model/user-timezone-setting-request.dto.d.ts +17 -0
  1130. package/model/user-timezone-setting-retrieve-error-response400.dto.d.ts +15 -0
  1131. package/model/user-timezone-setting.dto.d.ts +21 -0
  1132. package/model/user-timezone.dto.d.ts +20 -0
  1133. package/model/user-timezones-list-error-response400.dto.d.ts +15 -0
  1134. package/model/user-timezones-save-all-create-error-response400.dto.d.ts +16 -0
  1135. package/model/user-timezones-save-all-create-error.dto.d.ts +18 -0
  1136. package/model/user-timezones-save-all-create-index-name-error-component.dto.d.ts +32 -0
  1137. package/model/user-timezones-save-all-create-index-non-field-errors-error-component.dto.d.ts +28 -0
  1138. package/model/user-timezones-save-all-create-index-timezone-error-component.dto.d.ts +32 -0
  1139. package/model/user-timezones-save-all-create-non-field-errors-error-component.dto.d.ts +27 -0
  1140. package/model/user-timezones-save-all-create-validation-error.dto.d.ts +15 -0
  1141. package/model/user.dto.d.ts +78 -0
  1142. package/model/users-create-avatar-error-component.dto.d.ts +30 -0
  1143. package/model/users-create-birthday-error-component.dto.d.ts +27 -0
  1144. package/model/users-create-branch-error-component.dto.d.ts +29 -0
  1145. package/model/users-create-created-by-error-component.dto.d.ts +27 -0
  1146. package/model/users-create-department-error-component.dto.d.ts +29 -0
  1147. package/model/users-create-dismissal-reason-error-component.dto.d.ts +27 -0
  1148. package/model/users-create-email-error-component.dto.d.ts +33 -0
  1149. package/model/users-create-error-response400.dto.d.ts +16 -0
  1150. package/model/users-create-error.dto.d.ts +50 -0
  1151. package/model/users-create-first-name-error-component.dto.d.ts +32 -0
  1152. package/model/users-create-first-working-day-by-contract-error-component.dto.d.ts +27 -0
  1153. package/model/users-create-first-working-day-error-component.dto.d.ts +27 -0
  1154. package/model/users-create-github-username-error-component.dto.d.ts +32 -0
  1155. package/model/users-create-home-phone-error-component.dto.d.ts +32 -0
  1156. package/model/users-create-is-intern-error-component.dto.d.ts +28 -0
  1157. package/model/users-create-is-part-time-error-component.dto.d.ts +28 -0
  1158. package/model/users-create-jira-account-id-error-component.dto.d.ts +31 -0
  1159. package/model/users-create-last-name-error-component.dto.d.ts +32 -0
  1160. package/model/users-create-last-working-day-error-component.dto.d.ts +27 -0
  1161. package/model/users-create-location-error-component.dto.d.ts +29 -0
  1162. package/model/users-create-middle-name-error-component.dto.d.ts +30 -0
  1163. package/model/users-create-non-field-errors-error-component.dto.d.ts +27 -0
  1164. package/model/users-create-office-phone-error-component.dto.d.ts +32 -0
  1165. package/model/users-create-onsite-error-component.dto.d.ts +28 -0
  1166. package/model/users-create-personal-email-error-component.dto.d.ts +32 -0
  1167. package/model/users-create-personal-phone-error-component.dto.d.ts +32 -0
  1168. package/model/users-create-recruited-by-error-component.dto.d.ts +27 -0
  1169. package/model/users-create-role-error-component.dto.d.ts +27 -0
  1170. package/model/users-create-skype-error-component.dto.d.ts +32 -0
  1171. package/model/users-create-slack-id-error-component.dto.d.ts +32 -0
  1172. package/model/users-create-status-error-component.dto.d.ts +28 -0
  1173. package/model/users-create-supervisees-error-component.dto.d.ts +30 -0
  1174. package/model/users-create-supervisors-error-component.dto.d.ts +30 -0
  1175. package/model/users-create-timezone-error-component.dto.d.ts +32 -0
  1176. package/model/users-create-updated-by-error-component.dto.d.ts +27 -0
  1177. package/model/users-create-utilization-percent-error-component.dto.d.ts +31 -0
  1178. package/model/users-create-validation-error.dto.d.ts +15 -0
  1179. package/model/users-create-vendor-error-component.dto.d.ts +27 -0
  1180. package/model/users-create-work-type-error-component.dto.d.ts +29 -0
  1181. package/model/users-list-branch-error-component.dto.d.ts +26 -0
  1182. package/model/users-list-branch-in-error-component.dto.d.ts +26 -0
  1183. package/model/users-list-department-error-component.dto.d.ts +26 -0
  1184. package/model/users-list-department-in-error-component.dto.d.ts +26 -0
  1185. package/model/users-list-error-response400.dto.d.ts +16 -0
  1186. package/model/users-list-error.dto.d.ts +26 -0
  1187. package/model/users-list-id-error-component.dto.d.ts +27 -0
  1188. package/model/users-list-id-in-error-component.dto.d.ts +27 -0
  1189. package/model/users-list-status-error-component.dto.d.ts +26 -0
  1190. package/model/users-list-status-in-error-component.dto.d.ts +26 -0
  1191. package/model/users-list-supervisees-id-in-error-component.dto.d.ts +27 -0
  1192. package/model/users-list-supervisors-id-in-error-component.dto.d.ts +27 -0
  1193. package/model/users-list-validation-error.dto.d.ts +15 -0
  1194. package/model/users-list-work-type-error-component.dto.d.ts +26 -0
  1195. package/model/users-list-work-type-in-error-component.dto.d.ts +26 -0
  1196. package/model/users-retrieve-error-response400.dto.d.ts +15 -0
  1197. package/model/users-update-avatar-error-component.dto.d.ts +30 -0
  1198. package/model/users-update-birthday-error-component.dto.d.ts +27 -0
  1199. package/model/users-update-branch-error-component.dto.d.ts +29 -0
  1200. package/model/users-update-created-by-error-component.dto.d.ts +27 -0
  1201. package/model/users-update-department-error-component.dto.d.ts +29 -0
  1202. package/model/users-update-dismissal-reason-error-component.dto.d.ts +27 -0
  1203. package/model/users-update-email-error-component.dto.d.ts +33 -0
  1204. package/model/users-update-error-response400.dto.d.ts +16 -0
  1205. package/model/users-update-error.dto.d.ts +50 -0
  1206. package/model/users-update-first-name-error-component.dto.d.ts +32 -0
  1207. package/model/users-update-first-working-day-by-contract-error-component.dto.d.ts +27 -0
  1208. package/model/users-update-first-working-day-error-component.dto.d.ts +27 -0
  1209. package/model/users-update-github-username-error-component.dto.d.ts +32 -0
  1210. package/model/users-update-home-phone-error-component.dto.d.ts +32 -0
  1211. package/model/users-update-is-intern-error-component.dto.d.ts +28 -0
  1212. package/model/users-update-is-part-time-error-component.dto.d.ts +28 -0
  1213. package/model/users-update-jira-account-id-error-component.dto.d.ts +31 -0
  1214. package/model/users-update-last-name-error-component.dto.d.ts +32 -0
  1215. package/model/users-update-last-working-day-error-component.dto.d.ts +27 -0
  1216. package/model/users-update-location-error-component.dto.d.ts +29 -0
  1217. package/model/users-update-middle-name-error-component.dto.d.ts +30 -0
  1218. package/model/users-update-non-field-errors-error-component.dto.d.ts +27 -0
  1219. package/model/users-update-office-phone-error-component.dto.d.ts +32 -0
  1220. package/model/users-update-onsite-error-component.dto.d.ts +28 -0
  1221. package/model/users-update-personal-email-error-component.dto.d.ts +32 -0
  1222. package/model/users-update-personal-phone-error-component.dto.d.ts +32 -0
  1223. package/model/users-update-recruited-by-error-component.dto.d.ts +27 -0
  1224. package/model/users-update-role-error-component.dto.d.ts +27 -0
  1225. package/model/users-update-skype-error-component.dto.d.ts +32 -0
  1226. package/model/users-update-slack-id-error-component.dto.d.ts +32 -0
  1227. package/model/users-update-status-error-component.dto.d.ts +28 -0
  1228. package/model/users-update-supervisees-error-component.dto.d.ts +30 -0
  1229. package/model/users-update-supervisors-error-component.dto.d.ts +30 -0
  1230. package/model/users-update-timezone-error-component.dto.d.ts +32 -0
  1231. package/model/users-update-updated-by-error-component.dto.d.ts +27 -0
  1232. package/model/users-update-utilization-percent-error-component.dto.d.ts +31 -0
  1233. package/model/users-update-validation-error.dto.d.ts +15 -0
  1234. package/model/users-update-vendor-error-component.dto.d.ts +27 -0
  1235. package/model/users-update-work-type-error-component.dto.d.ts +29 -0
  1236. package/model/validation-error-enum.dto.d.ts +15 -0
  1237. package/model/vendors-create-error-response400.dto.d.ts +16 -0
  1238. package/model/vendors-create-error.dto.d.ts +16 -0
  1239. package/model/vendors-create-name-error-component.dto.d.ts +33 -0
  1240. package/model/vendors-create-non-field-errors-error-component.dto.d.ts +27 -0
  1241. package/model/vendors-create-validation-error.dto.d.ts +15 -0
  1242. package/model/vendors-destroy-error-response400.dto.d.ts +15 -0
  1243. package/model/vendors-list-error-response400.dto.d.ts +16 -0
  1244. package/model/vendors-list-error.dto.d.ts +16 -0
  1245. package/model/vendors-list-id-error-component.dto.d.ts +27 -0
  1246. package/model/vendors-list-id-in-error-component.dto.d.ts +27 -0
  1247. package/model/vendors-list-validation-error.dto.d.ts +15 -0
  1248. package/model/vendors-retrieve-error-response400.dto.d.ts +15 -0
  1249. package/model/vendors-update-error-response400.dto.d.ts +16 -0
  1250. package/model/vendors-update-error.dto.d.ts +16 -0
  1251. package/model/vendors-update-name-error-component.dto.d.ts +33 -0
  1252. package/model/vendors-update-non-field-errors-error-component.dto.d.ts +27 -0
  1253. package/model/vendors-update-validation-error.dto.d.ts +15 -0
  1254. package/model/who-am-i-retrieve-error-response400.dto.d.ts +15 -0
  1255. package/model/who-am-i.dto.d.ts +23 -0
  1256. package/model/work-type-request.dto.d.ts +17 -0
  1257. package/model/work-type.dto.d.ts +28 -0
  1258. package/model/work-types-create-department-error-component.dto.d.ts +27 -0
  1259. package/model/work-types-create-error-response400.dto.d.ts +16 -0
  1260. package/model/work-types-create-error.dto.d.ts +18 -0
  1261. package/model/work-types-create-name-error-component.dto.d.ts +33 -0
  1262. package/model/work-types-create-non-field-errors-error-component.dto.d.ts +27 -0
  1263. package/model/work-types-create-parent-error-component.dto.d.ts +27 -0
  1264. package/model/work-types-create-validation-error.dto.d.ts +15 -0
  1265. package/model/work-types-destroy-error-response400.dto.d.ts +15 -0
  1266. package/model/work-types-list-department-error-component.dto.d.ts +26 -0
  1267. package/model/work-types-list-department-in-error-component.dto.d.ts +26 -0
  1268. package/model/work-types-list-error-response400.dto.d.ts +16 -0
  1269. package/model/work-types-list-error.dto.d.ts +20 -0
  1270. package/model/work-types-list-id-error-component.dto.d.ts +27 -0
  1271. package/model/work-types-list-id-in-error-component.dto.d.ts +27 -0
  1272. package/model/work-types-list-parent-error-component.dto.d.ts +26 -0
  1273. package/model/work-types-list-parent-in-error-component.dto.d.ts +26 -0
  1274. package/model/work-types-list-validation-error.dto.d.ts +15 -0
  1275. package/model/work-types-retrieve-error-response400.dto.d.ts +15 -0
  1276. package/model/work-types-update-department-error-component.dto.d.ts +27 -0
  1277. package/model/work-types-update-error-response400.dto.d.ts +16 -0
  1278. package/model/work-types-update-error.dto.d.ts +18 -0
  1279. package/model/work-types-update-name-error-component.dto.d.ts +33 -0
  1280. package/model/work-types-update-non-field-errors-error-component.dto.d.ts +27 -0
  1281. package/model/work-types-update-parent-error-component.dto.d.ts +27 -0
  1282. package/model/work-types-update-validation-error.dto.d.ts +15 -0
  1283. package/package.json +36 -0
  1284. package/param.d.ts +37 -0
  1285. package/variables.d.ts +8 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"saritasa-crm-delmar-core-sdk.mjs","sources":["../../encoder.ts","../../variables.ts","../../configuration.ts","../../api/branch-periods-api.service.ts","../../api/branches-api.service.ts","../../api/departments-api.service.ts","../../api/dismissal-reasons-api.service.ts","../../api/jira-client-api.service.ts","../../api/jira-instances-api.service.ts","../../api/locations-api.service.ts","../../api/permission-data-api.service.ts","../../api/profile-api.service.ts","../../api/projects-api.service.ts","../../api/roles-api.service.ts","../../api/s3-api.service.ts","../../api/search-periods-api.service.ts","../../api/sso-api.service.ts","../../api/token-api.service.ts","../../api/user-capacities-api.service.ts","../../api/user-logins-api.service.ts","../../api/user-periods-api.service.ts","../../api/user-timezone-setting-api.service.ts","../../api/user-timezones-api.service.ts","../../api/users-api.service.ts","../../api/vendors-api.service.ts","../../api/who-am-i-api.service.ts","../../api/work-types-api.service.ts","../../api/api.ts","../../model/branch-period-type-enum.dto.ts","../../model/branch-periods-create-branch-error-component.dto.ts","../../model/branch-periods-create-description-error-component.dto.ts","../../model/branch-periods-create-non-field-errors-error-component.dto.ts","../../model/branch-periods-create-period-end-error-component.dto.ts","../../model/branch-periods-create-period-non-field-errors-error-component.dto.ts","../../model/branch-periods-create-period-start-error-component.dto.ts","../../model/branch-periods-create-title-error-component.dto.ts","../../model/branch-periods-create-type-error-component.dto.ts","../../model/branch-periods-update-branch-error-component.dto.ts","../../model/branch-periods-update-description-error-component.dto.ts","../../model/branch-periods-update-non-field-errors-error-component.dto.ts","../../model/branch-periods-update-period-end-error-component.dto.ts","../../model/branch-periods-update-period-non-field-errors-error-component.dto.ts","../../model/branch-periods-update-period-start-error-component.dto.ts","../../model/branch-periods-update-title-error-component.dto.ts","../../model/branch-periods-update-type-error-component.dto.ts","../../model/branch-request.dto.ts","../../model/branch-user-stats.dto.ts","../../model/branches-create-address1-error-component.dto.ts","../../model/branches-create-address2-error-component.dto.ts","../../model/branches-create-ceo-error-component.dto.ts","../../model/branches-create-code-error-component.dto.ts","../../model/branches-create-country-error-component.dto.ts","../../model/branches-create-hr-email-error-component.dto.ts","../../model/branches-create-icon-error-component.dto.ts","../../model/branches-create-is-oversea-error-component.dto.ts","../../model/branches-create-is-vacation-file-required-error-component.dto.ts","../../model/branches-create-name-error-component.dto.ts","../../model/branches-create-non-field-errors-error-component.dto.ts","../../model/branches-create-postal-code-error-component.dto.ts","../../model/branches-create-state-error-component.dto.ts","../../model/branches-create-timezone-error-component.dto.ts","../../model/branches-create-vacation-days-count-error-component.dto.ts","../../model/branches-create-vacation-period-error-component.dto.ts","../../model/branches-list-id-error-component.dto.ts","../../model/branches-list-id-in-error-component.dto.ts","../../model/branches-update-address1-error-component.dto.ts","../../model/branches-update-address2-error-component.dto.ts","../../model/branches-update-ceo-error-component.dto.ts","../../model/branches-update-code-error-component.dto.ts","../../model/branches-update-country-error-component.dto.ts","../../model/branches-update-hr-email-error-component.dto.ts","../../model/branches-update-icon-error-component.dto.ts","../../model/branches-update-is-oversea-error-component.dto.ts","../../model/branches-update-is-vacation-file-required-error-component.dto.ts","../../model/branches-update-name-error-component.dto.ts","../../model/branches-update-non-field-errors-error-component.dto.ts","../../model/branches-update-postal-code-error-component.dto.ts","../../model/branches-update-state-error-component.dto.ts","../../model/branches-update-timezone-error-component.dto.ts","../../model/branches-update-vacation-days-count-error-component.dto.ts","../../model/branches-update-vacation-period-error-component.dto.ts","../../model/branches-users-stats-list-id-error-component.dto.ts","../../model/branches-users-stats-list-id-in-error-component.dto.ts","../../model/branches-users-stats-list-users-search-error-component.dto.ts","../../model/client-error-enum.dto.ts","../../model/config-enum.dto.ts","../../model/create-jira-project.dto.ts","../../model/create-jira-project-request.dto.ts","../../model/date-range-field.dto.ts","../../model/date-range-field-request.dto.ts","../../model/debug-login-request.dto.ts","../../model/department-request.dto.ts","../../model/departments-create-name-error-component.dto.ts","../../model/departments-create-non-field-errors-error-component.dto.ts","../../model/departments-create-utilization-error-component.dto.ts","../../model/departments-create-work-types-error-component.dto.ts","../../model/departments-list-id-error-component.dto.ts","../../model/departments-list-id-in-error-component.dto.ts","../../model/departments-list-name-error-component.dto.ts","../../model/departments-list-name-in-error-component.dto.ts","../../model/departments-list-work-types-id-in-error-component.dto.ts","../../model/departments-update-name-error-component.dto.ts","../../model/departments-update-non-field-errors-error-component.dto.ts","../../model/departments-update-utilization-error-component.dto.ts","../../model/departments-update-work-types-error-component.dto.ts","../../model/dismissal-reasons-create-name-error-component.dto.ts","../../model/dismissal-reasons-create-non-field-errors-error-component.dto.ts","../../model/dismissal-reasons-create-type-error-component.dto.ts","../../model/dismissal-reasons-list-id-error-component.dto.ts","../../model/dismissal-reasons-list-id-in-error-component.dto.ts","../../model/dismissal-reasons-list-name-error-component.dto.ts","../../model/dismissal-reasons-list-name-in-error-component.dto.ts","../../model/dismissal-reasons-list-type-error-component.dto.ts","../../model/dismissal-reasons-list-type-in-error-component.dto.ts","../../model/dismissal-reasons-update-name-error-component.dto.ts","../../model/dismissal-reasons-update-non-field-errors-error-component.dto.ts","../../model/dismissal-reasons-update-type-error-component.dto.ts","../../model/error-code401-enum.dto.ts","../../model/error-code403-enum.dto.ts","../../model/error-code404-enum.dto.ts","../../model/error-code405-enum.dto.ts","../../model/error-code406-enum.dto.ts","../../model/error-code415-enum.dto.ts","../../model/error-code500-enum.dto.ts","../../model/group-enum.dto.ts","../../model/jira-client-create-project-create-instance-error-component.dto.ts","../../model/jira-client-create-project-create-lead-email-error-component.dto.ts","../../model/jira-client-create-project-create-non-field-errors-error-component.dto.ts","../../model/jira-client-create-project-create-project-name-error-component.dto.ts","../../model/jira-instance.dto.ts","../../model/location.dto.ts","../../model/location-request.dto.ts","../../model/locations-create-icon-error-component.dto.ts","../../model/locations-create-name-error-component.dto.ts","../../model/locations-create-non-field-errors-error-component.dto.ts","../../model/locations-create-timezone-error-component.dto.ts","../../model/locations-list-id-error-component.dto.ts","../../model/locations-list-id-in-error-component.dto.ts","../../model/locations-list-name-error-component.dto.ts","../../model/locations-list-name-in-error-component.dto.ts","../../model/locations-list-timezone-error-component.dto.ts","../../model/locations-list-timezone-in-error-component.dto.ts","../../model/locations-update-icon-error-component.dto.ts","../../model/locations-update-name-error-component.dto.ts","../../model/locations-update-non-field-errors-error-component.dto.ts","../../model/locations-update-timezone-error-component.dto.ts","../../model/login-open-id-request.dto.ts","../../model/open-id-code-exchange-request.dto.ts","../../model/open-id-redirect.dto.ts","../../model/ordering-enum.dto.ts","../../model/parse-error-code-enum.dto.ts","../../model/period-model-enum.dto.ts","../../model/period-type-enum.dto.ts","../../model/permission-enum.dto.ts","../../model/profile-request.dto.ts","../../model/profile-update-avatar-error-component.dto.ts","../../model/profile-update-branch-error-component.dto.ts","../../model/profile-update-created-by-error-component.dto.ts","../../model/profile-update-department-error-component.dto.ts","../../model/profile-update-dismissal-reason-error-component.dto.ts","../../model/profile-update-first-name-error-component.dto.ts","../../model/profile-update-last-name-error-component.dto.ts","../../model/profile-update-location-error-component.dto.ts","../../model/profile-update-middle-name-error-component.dto.ts","../../model/profile-update-non-field-errors-error-component.dto.ts","../../model/profile-update-recruited-by-error-component.dto.ts","../../model/profile-update-role-error-component.dto.ts","../../model/profile-update-updated-by-error-component.dto.ts","../../model/profile-update-vendor-error-component.dto.ts","../../model/profile-update-work-type-error-component.dto.ts","../../model/project.dto.ts","../../model/roles-create-name-error-component.dto.ts","../../model/roles-create-non-field-errors-error-component.dto.ts","../../model/roles-create-permissions-index-non-field-errors-error-component.dto.ts","../../model/roles-create-permissions-index-permission-error-component.dto.ts","../../model/roles-create-permissions-index-scope-error-component.dto.ts","../../model/roles-create-permissions-non-field-errors-error-component.dto.ts","../../model/roles-list-permissions-permission-error-component.dto.ts","../../model/roles-list-permissions-permission-in-error-component.dto.ts","../../model/roles-list-permissions-scope-error-component.dto.ts","../../model/roles-list-permissions-scope-in-error-component.dto.ts","../../model/roles-update-name-error-component.dto.ts","../../model/roles-update-non-field-errors-error-component.dto.ts","../../model/roles-update-permissions-index-non-field-errors-error-component.dto.ts","../../model/roles-update-permissions-index-permission-error-component.dto.ts","../../model/roles-update-permissions-index-scope-error-component.dto.ts","../../model/roles-update-permissions-non-field-errors-error-component.dto.ts","../../model/s3-get-params-create-config-error-component.dto.ts","../../model/s3-get-params-create-content-length-error-component.dto.ts","../../model/s3-get-params-create-content-type-error-component.dto.ts","../../model/s3-get-params-create-filename-error-component.dto.ts","../../model/s3-get-params-create-non-field-errors-error-component.dto.ts","../../model/s3-params.dto.ts","../../model/scope-enum.dto.ts","../../model/search-periods-list-branch-in-error-component.dto.ts","../../model/search-periods-list-period-gte-error-component.dto.ts","../../model/search-periods-list-period-lte-error-component.dto.ts","../../model/search-periods-list-status-error-component.dto.ts","../../model/search-periods-list-type-error-component.dto.ts","../../model/search-periods-list-user-branch-in-error-component.dto.ts","../../model/search-periods-list-user-department-in-error-component.dto.ts","../../model/search-periods-list-user-in-error-component.dto.ts","../../model/search-periods-list-user-status-in-error-component.dto.ts","../../model/search-periods-list-user-supervisees-error-component.dto.ts","../../model/search-periods-list-user-supervisors-error-component.dto.ts","../../model/search-periods-list-user-work-type-in-error-component.dto.ts","../../model/server-error-enum.dto.ts","../../model/simple-branch.dto.ts","../../model/simple-branch-request.dto.ts","../../model/simple-department.dto.ts","../../model/simple-department-request.dto.ts","../../model/simple-dismissal-reason-type-enum.dto.ts","../../model/simple-location.dto.ts","../../model/simple-location-request.dto.ts","../../model/simple-role.dto.ts","../../model/simple-role-request.dto.ts","../../model/simple-user.dto.ts","../../model/simple-user-request.dto.ts","../../model/simple-vendor.dto.ts","../../model/simple-vendor-request.dto.ts","../../model/simple-work-type.dto.ts","../../model/simple-work-type-request.dto.ts","../../model/sso-code-exchange-create-code-error-component.dto.ts","../../model/sso-code-exchange-create-non-field-errors-error-component.dto.ts","../../model/sso-code-exchange-create-redirect-uri-error-component.dto.ts","../../model/sso-debug-create-email-error-component.dto.ts","../../model/sso-debug-create-non-field-errors-error-component.dto.ts","../../model/sso-start-create-non-field-errors-error-component.dto.ts","../../model/sso-start-create-redirect-uri-error-component.dto.ts","../../model/token-obtain-pair.dto.ts","../../model/token-refresh-create-non-field-errors-error-component.dto.ts","../../model/token-refresh-create-refresh-error-component.dto.ts","../../model/token-refresh.dto.ts","../../model/token-refresh-request.dto.ts","../../model/token-verify-create-non-field-errors-error-component.dto.ts","../../model/token-verify-create-token-error-component.dto.ts","../../model/token-verify-request.dto.ts","../../model/user-capacities-calculate-capacity-create-billable-capacity-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-branch-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-date-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-department-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-non-field-errors-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-total-capacity-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-user-error-component.dto.ts","../../model/user-capacities-calculate-capacity-create-work-type-error-component.dto.ts","../../model/user-capacities-get-period-capacity-list-date-gte-error-component.dto.ts","../../model/user-capacities-get-period-capacity-list-date-lte-error-component.dto.ts","../../model/user-capacities-get-period-capacity-list-object-ids-error-component.dto.ts","../../model/user-capacities-get-period-capacity-list-period-type-error-component.dto.ts","../../model/user-capacities-list-branch-id-error-component.dto.ts","../../model/user-capacities-list-branch-id-in-error-component.dto.ts","../../model/user-capacities-list-date-gte-error-component.dto.ts","../../model/user-capacities-list-date-lte-error-component.dto.ts","../../model/user-capacities-list-department-id-error-component.dto.ts","../../model/user-capacities-list-department-id-in-error-component.dto.ts","../../model/user-capacities-list-id-error-component.dto.ts","../../model/user-capacities-list-id-in-error-component.dto.ts","../../model/user-capacities-list-user-id-error-component.dto.ts","../../model/user-capacities-list-user-id-in-error-component.dto.ts","../../model/user-capacities-list-work-type-id-error-component.dto.ts","../../model/user-capacities-list-work-type-id-in-error-component.dto.ts","../../model/user-capacity.dto.ts","../../model/user-capacity-request.dto.ts","../../model/user-login-request.dto.ts","../../model/user-logins-list-branch-error-component.dto.ts","../../model/user-logins-list-branch-in-error-component.dto.ts","../../model/user-logins-list-department-error-component.dto.ts","../../model/user-logins-list-department-in-error-component.dto.ts","../../model/user-logins-list-role-error-component.dto.ts","../../model/user-logins-list-role-in-error-component.dto.ts","../../model/user-logins-list-work-type-error-component.dto.ts","../../model/user-logins-list-work-type-in-error-component.dto.ts","../../model/user-logins-update-email-error-component.dto.ts","../../model/user-logins-update-non-field-errors-error-component.dto.ts","../../model/user-logins-update-role-error-component.dto.ts","../../model/user-period-status-enum.dto.ts","../../model/user-period-type-enum.dto.ts","../../model/user-status-enum.dto.ts","../../model/user-sum-capacity.dto.ts","../../model/user-timezone.dto.ts","../../model/user-timezone-request.dto.ts","../../model/user-timezone-setting-create-non-field-errors-error-component.dto.ts","../../model/user-timezone-setting-create-ordering-error-component.dto.ts","../../model/user-timezone-setting-create-use12-format-error-component.dto.ts","../../model/user-timezones-save-all-create-index-name-error-component.dto.ts","../../model/user-timezones-save-all-create-index-non-field-errors-error-component.dto.ts","../../model/user-timezones-save-all-create-index-timezone-error-component.dto.ts","../../model/user-timezones-save-all-create-non-field-errors-error-component.dto.ts","../../model/users-create-avatar-error-component.dto.ts","../../model/users-create-birthday-error-component.dto.ts","../../model/users-create-branch-error-component.dto.ts","../../model/users-create-created-by-error-component.dto.ts","../../model/users-create-department-error-component.dto.ts","../../model/users-create-dismissal-reason-error-component.dto.ts","../../model/users-create-email-error-component.dto.ts","../../model/users-create-first-name-error-component.dto.ts","../../model/users-create-first-working-day-by-contract-error-component.dto.ts","../../model/users-create-first-working-day-error-component.dto.ts","../../model/users-create-github-username-error-component.dto.ts","../../model/users-create-home-phone-error-component.dto.ts","../../model/users-create-is-intern-error-component.dto.ts","../../model/users-create-is-part-time-error-component.dto.ts","../../model/users-create-jira-account-id-error-component.dto.ts","../../model/users-create-last-name-error-component.dto.ts","../../model/users-create-last-working-day-error-component.dto.ts","../../model/users-create-location-error-component.dto.ts","../../model/users-create-middle-name-error-component.dto.ts","../../model/users-create-non-field-errors-error-component.dto.ts","../../model/users-create-office-phone-error-component.dto.ts","../../model/users-create-onsite-error-component.dto.ts","../../model/users-create-personal-email-error-component.dto.ts","../../model/users-create-personal-phone-error-component.dto.ts","../../model/users-create-recruited-by-error-component.dto.ts","../../model/users-create-role-error-component.dto.ts","../../model/users-create-skype-error-component.dto.ts","../../model/users-create-slack-id-error-component.dto.ts","../../model/users-create-status-error-component.dto.ts","../../model/users-create-supervisees-error-component.dto.ts","../../model/users-create-supervisors-error-component.dto.ts","../../model/users-create-timezone-error-component.dto.ts","../../model/users-create-updated-by-error-component.dto.ts","../../model/users-create-utilization-percent-error-component.dto.ts","../../model/users-create-vendor-error-component.dto.ts","../../model/users-create-work-type-error-component.dto.ts","../../model/users-list-branch-error-component.dto.ts","../../model/users-list-branch-in-error-component.dto.ts","../../model/users-list-department-error-component.dto.ts","../../model/users-list-department-in-error-component.dto.ts","../../model/users-list-id-error-component.dto.ts","../../model/users-list-id-in-error-component.dto.ts","../../model/users-list-status-error-component.dto.ts","../../model/users-list-status-in-error-component.dto.ts","../../model/users-list-supervisees-id-in-error-component.dto.ts","../../model/users-list-supervisors-id-in-error-component.dto.ts","../../model/users-list-work-type-error-component.dto.ts","../../model/users-list-work-type-in-error-component.dto.ts","../../model/users-update-avatar-error-component.dto.ts","../../model/users-update-birthday-error-component.dto.ts","../../model/users-update-branch-error-component.dto.ts","../../model/users-update-created-by-error-component.dto.ts","../../model/users-update-department-error-component.dto.ts","../../model/users-update-dismissal-reason-error-component.dto.ts","../../model/users-update-email-error-component.dto.ts","../../model/users-update-first-name-error-component.dto.ts","../../model/users-update-first-working-day-by-contract-error-component.dto.ts","../../model/users-update-first-working-day-error-component.dto.ts","../../model/users-update-github-username-error-component.dto.ts","../../model/users-update-home-phone-error-component.dto.ts","../../model/users-update-is-intern-error-component.dto.ts","../../model/users-update-is-part-time-error-component.dto.ts","../../model/users-update-jira-account-id-error-component.dto.ts","../../model/users-update-last-name-error-component.dto.ts","../../model/users-update-last-working-day-error-component.dto.ts","../../model/users-update-location-error-component.dto.ts","../../model/users-update-middle-name-error-component.dto.ts","../../model/users-update-non-field-errors-error-component.dto.ts","../../model/users-update-office-phone-error-component.dto.ts","../../model/users-update-onsite-error-component.dto.ts","../../model/users-update-personal-email-error-component.dto.ts","../../model/users-update-personal-phone-error-component.dto.ts","../../model/users-update-recruited-by-error-component.dto.ts","../../model/users-update-role-error-component.dto.ts","../../model/users-update-skype-error-component.dto.ts","../../model/users-update-slack-id-error-component.dto.ts","../../model/users-update-status-error-component.dto.ts","../../model/users-update-supervisees-error-component.dto.ts","../../model/users-update-supervisors-error-component.dto.ts","../../model/users-update-timezone-error-component.dto.ts","../../model/users-update-updated-by-error-component.dto.ts","../../model/users-update-utilization-percent-error-component.dto.ts","../../model/users-update-vendor-error-component.dto.ts","../../model/users-update-work-type-error-component.dto.ts","../../model/validation-error-enum.dto.ts","../../model/vendors-create-name-error-component.dto.ts","../../model/vendors-create-non-field-errors-error-component.dto.ts","../../model/vendors-list-id-error-component.dto.ts","../../model/vendors-list-id-in-error-component.dto.ts","../../model/vendors-update-name-error-component.dto.ts","../../model/vendors-update-non-field-errors-error-component.dto.ts","../../model/work-type-request.dto.ts","../../model/work-types-create-department-error-component.dto.ts","../../model/work-types-create-name-error-component.dto.ts","../../model/work-types-create-non-field-errors-error-component.dto.ts","../../model/work-types-create-parent-error-component.dto.ts","../../model/work-types-list-department-error-component.dto.ts","../../model/work-types-list-department-in-error-component.dto.ts","../../model/work-types-list-id-error-component.dto.ts","../../model/work-types-list-id-in-error-component.dto.ts","../../model/work-types-list-parent-error-component.dto.ts","../../model/work-types-list-parent-in-error-component.dto.ts","../../model/work-types-update-department-error-component.dto.ts","../../model/work-types-update-name-error-component.dto.ts","../../model/work-types-update-non-field-errors-error-component.dto.ts","../../model/work-types-update-parent-error-component.dto.ts","../../api.module.ts","../../saritasa-crm-delmar-core-sdk.ts"],"sourcesContent":["import { HttpParameterCodec } from \"@angular/common/http\";\n\n/**\n * Custom HttpParameterCodec\n * Workaround for https://github.com/angular/angular/issues/18261\n */\nexport class CustomHttpParameterCodec implements HttpParameterCodec {\n encodeKey(k: string): string {\n return encodeURIComponent(k);\n }\n encodeValue(v: string): string {\n return encodeURIComponent(v);\n }\n decodeKey(k: string): string {\n return decodeURIComponent(k);\n }\n decodeValue(v: string): string {\n return decodeURIComponent(v);\n }\n}\n","import { InjectionToken } from \"@angular/core\";\n\nexport const BASE_PATH = new InjectionToken<string>(\"basePath\");\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n tsv: \" \",\n ssv: \" \",\n pipes: \"|\",\n};\n","import { HttpParameterCodec } from \"@angular/common/http\";\nimport { Param } from \"./param\";\n\nexport interface ConfigurationParameters {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Override the default method for encoding path parameters in various\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam?: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials?: { [key: string]: string | (() => string | undefined) };\n}\n\nexport class Configuration {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Encoding of various path parameter\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials: { [key: string]: string | (() => string | undefined) };\n\n constructor(configurationParameters: ConfigurationParameters = {}) {\n this.apiKeys = configurationParameters.apiKeys;\n this.username = configurationParameters.username;\n this.password = configurationParameters.password;\n this.accessToken = configurationParameters.accessToken;\n this.basePath = configurationParameters.basePath;\n this.withCredentials = configurationParameters.withCredentials;\n this.encoder = configurationParameters.encoder;\n if (configurationParameters.encodeParam) {\n this.encodeParam = configurationParameters.encodeParam;\n } else {\n this.encodeParam = (param) => this.defaultEncodeParam(param);\n }\n if (configurationParameters.credentials) {\n this.credentials = configurationParameters.credentials;\n } else {\n this.credentials = {};\n }\n\n // init default cookieAuth credential\n if (!this.credentials[\"cookieAuth\"]) {\n this.credentials[\"cookieAuth\"] = () => {\n if (this.apiKeys === null || this.apiKeys === undefined) {\n return undefined;\n } else {\n return this.apiKeys[\"cookieAuth\"] || this.apiKeys[\"sessionid\"];\n }\n };\n }\n\n // init default jwtAuth credential\n if (!this.credentials[\"jwtAuth\"]) {\n this.credentials[\"jwtAuth\"] = () => {\n return typeof this.accessToken === \"function\"\n ? this.accessToken()\n : this.accessToken;\n };\n }\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderContentType(contentTypes: string[]): string | undefined {\n if (contentTypes.length === 0) {\n return undefined;\n }\n\n const type = contentTypes.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length === 0) {\n return undefined;\n }\n\n const type = accepts.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp(\n \"^(application/json|[^;/ \\t]+/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$\",\n \"i\",\n );\n return (\n mime !== null &&\n (jsonMime.test(mime) ||\n mime.toLowerCase() === \"application/json-patch+json\")\n );\n }\n\n public lookupCredential(key: string): string | undefined {\n const value = this.credentials[key];\n return typeof value === \"function\" ? value() : value;\n }\n\n private defaultEncodeParam(param: Param): string {\n // This implementation exists as fallback for missing configuration\n // and for backwards compatibility to older typescript-angular generator versions.\n // It only works for the 'simple' parameter style.\n // Date-handling only works for the 'date-time' format.\n // All other styles and Date-formats are probably handled incorrectly.\n //\n // But: if that's all you need (i.e.: the most common use-case): no need for customization!\n\n const value =\n param.dataFormat === \"date-time\" && param.value instanceof Date\n ? (param.value as Date).toISOString()\n : param.value;\n\n return encodeURIComponent(String(value));\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { BranchPeriodDto } from \"../model/branch-period.dto\";\n// @ts-ignore\nimport { BranchPeriodRequestDto } from \"../model/branch-period-request.dto\";\n// @ts-ignore\nimport { BranchPeriodsCreateErrorResponse400Dto } from \"../model/branch-periods-create-error-response400.dto\";\n// @ts-ignore\nimport { BranchPeriodsDestroyErrorResponse400Dto } from \"../model/branch-periods-destroy-error-response400.dto\";\n// @ts-ignore\nimport { BranchPeriodsListErrorResponse400Dto } from \"../model/branch-periods-list-error-response400.dto\";\n// @ts-ignore\nimport { BranchPeriodsRetrieveErrorResponse400Dto } from \"../model/branch-periods-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { BranchPeriodsUpdateErrorResponse400Dto } from \"../model/branch-periods-update-error-response400.dto\";\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedBranchPeriodListDto } from \"../model/paginated-branch-period-list.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n BranchPeriodsApiServiceInterface,\n BranchPeriodsCreateRequestParams,\n BranchPeriodsDestroyRequestParams,\n BranchPeriodsListRequestParams,\n BranchPeriodsRetrieveRequestParams,\n BranchPeriodsUpdateRequestParams,\n} from \"./branch-periods-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class BranchPeriodsApiService\n implements BranchPeriodsApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Api viewset for BranchPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchPeriodsCreate(\n requestParameters?: BranchPeriodsCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<BranchPeriodDto>;\n public branchPeriodsCreate(\n requestParameters?: BranchPeriodsCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<BranchPeriodDto>>;\n public branchPeriodsCreate(\n requestParameters?: BranchPeriodsCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<BranchPeriodDto>>;\n public branchPeriodsCreate(\n requestParameters?: BranchPeriodsCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const branchPeriodRequestDto = requestParameters?.branchPeriodRequestDto;\n if (\n branchPeriodRequestDto === null ||\n branchPeriodRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter branchPeriodRequestDto was null or undefined when calling branchPeriodsCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branch-periods/`;\n return this.httpClient.request<BranchPeriodDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: branchPeriodRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for BranchPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchPeriodsDestroy(\n requestParameters?: BranchPeriodsDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public branchPeriodsDestroy(\n requestParameters?: BranchPeriodsDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public branchPeriodsDestroy(\n requestParameters?: BranchPeriodsDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public branchPeriodsDestroy(\n requestParameters?: BranchPeriodsDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling branchPeriodsDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branch-periods/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for BranchPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchPeriodsList(\n requestParameters?: BranchPeriodsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedBranchPeriodListDto>;\n public branchPeriodsList(\n requestParameters?: BranchPeriodsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedBranchPeriodListDto>>;\n public branchPeriodsList(\n requestParameters?: BranchPeriodsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedBranchPeriodListDto>>;\n public branchPeriodsList(\n requestParameters?: BranchPeriodsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branch-periods/`;\n return this.httpClient.request<PaginatedBranchPeriodListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for BranchPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchPeriodsRetrieve(\n requestParameters?: BranchPeriodsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<BranchPeriodDto>;\n public branchPeriodsRetrieve(\n requestParameters?: BranchPeriodsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<BranchPeriodDto>>;\n public branchPeriodsRetrieve(\n requestParameters?: BranchPeriodsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<BranchPeriodDto>>;\n public branchPeriodsRetrieve(\n requestParameters?: BranchPeriodsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling branchPeriodsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branch-periods/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<BranchPeriodDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for BranchPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchPeriodsUpdate(\n requestParameters?: BranchPeriodsUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<BranchPeriodDto>;\n public branchPeriodsUpdate(\n requestParameters?: BranchPeriodsUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<BranchPeriodDto>>;\n public branchPeriodsUpdate(\n requestParameters?: BranchPeriodsUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<BranchPeriodDto>>;\n public branchPeriodsUpdate(\n requestParameters?: BranchPeriodsUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling branchPeriodsUpdate.\",\n );\n }\n const branchPeriodRequestDto = requestParameters?.branchPeriodRequestDto;\n if (\n branchPeriodRequestDto === null ||\n branchPeriodRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter branchPeriodRequestDto was null or undefined when calling branchPeriodsUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branch-periods/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<BranchPeriodDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: branchPeriodRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { BranchDto } from \"../model/branch.dto\";\n// @ts-ignore\nimport { BranchRequestDto } from \"../model/branch-request.dto\";\n// @ts-ignore\nimport { BranchesCreateErrorResponse400Dto } from \"../model/branches-create-error-response400.dto\";\n// @ts-ignore\nimport { BranchesDestroyErrorResponse400Dto } from \"../model/branches-destroy-error-response400.dto\";\n// @ts-ignore\nimport { BranchesListErrorResponse400Dto } from \"../model/branches-list-error-response400.dto\";\n// @ts-ignore\nimport { BranchesRetrieveErrorResponse400Dto } from \"../model/branches-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { BranchesUpdateErrorResponse400Dto } from \"../model/branches-update-error-response400.dto\";\n// @ts-ignore\nimport { BranchesUsersStatsListErrorResponse400Dto } from \"../model/branches-users-stats-list-error-response400.dto\";\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedBranchListDto } from \"../model/paginated-branch-list.dto\";\n// @ts-ignore\nimport { PaginatedBranchUserStatsListDto } from \"../model/paginated-branch-user-stats-list.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n BranchesApiServiceInterface,\n BranchesCreateRequestParams,\n BranchesDestroyRequestParams,\n BranchesListRequestParams,\n BranchesRetrieveRequestParams,\n BranchesUpdateRequestParams,\n BranchesUsersStatsListRequestParams,\n} from \"./branches-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class BranchesApiService implements BranchesApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for viewing branches.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchesCreate(\n requestParameters?: BranchesCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<BranchDto>;\n public branchesCreate(\n requestParameters?: BranchesCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<BranchDto>>;\n public branchesCreate(\n requestParameters?: BranchesCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<BranchDto>>;\n public branchesCreate(\n requestParameters?: BranchesCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const branchRequestDto = requestParameters?.branchRequestDto;\n if (branchRequestDto === null || branchRequestDto === undefined) {\n throw new Error(\n \"Required parameter branchRequestDto was null or undefined when calling branchesCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branches/`;\n return this.httpClient.request<BranchDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: branchRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing branches.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchesDestroy(\n requestParameters?: BranchesDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public branchesDestroy(\n requestParameters?: BranchesDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public branchesDestroy(\n requestParameters?: BranchesDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public branchesDestroy(\n requestParameters?: BranchesDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling branchesDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branches/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing branches.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchesList(\n requestParameters?: BranchesListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedBranchListDto>;\n public branchesList(\n requestParameters?: BranchesListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedBranchListDto>>;\n public branchesList(\n requestParameters?: BranchesListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedBranchListDto>>;\n public branchesList(\n requestParameters?: BranchesListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branches/`;\n return this.httpClient.request<PaginatedBranchListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing branches.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchesRetrieve(\n requestParameters?: BranchesRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<BranchDto>;\n public branchesRetrieve(\n requestParameters?: BranchesRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<BranchDto>>;\n public branchesRetrieve(\n requestParameters?: BranchesRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<BranchDto>>;\n public branchesRetrieve(\n requestParameters?: BranchesRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling branchesRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branches/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<BranchDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing branches.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchesUpdate(\n requestParameters?: BranchesUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<BranchDto>;\n public branchesUpdate(\n requestParameters?: BranchesUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<BranchDto>>;\n public branchesUpdate(\n requestParameters?: BranchesUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<BranchDto>>;\n public branchesUpdate(\n requestParameters?: BranchesUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling branchesUpdate.\",\n );\n }\n const branchRequestDto = requestParameters?.branchRequestDto;\n if (branchRequestDto === null || branchRequestDto === undefined) {\n throw new Error(\n \"Required parameter branchRequestDto was null or undefined when calling branchesUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branches/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<BranchDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: branchRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet action for viewing users stats.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public branchesUsersStatsList(\n requestParameters?: BranchesUsersStatsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedBranchUserStatsListDto>;\n public branchesUsersStatsList(\n requestParameters?: BranchesUsersStatsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedBranchUserStatsListDto>>;\n public branchesUsersStatsList(\n requestParameters?: BranchesUsersStatsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedBranchUserStatsListDto>>;\n public branchesUsersStatsList(\n requestParameters?: BranchesUsersStatsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n const usersBranchIdIn = requestParameters?.usersBranchIdIn;\n const usersDepartmentIdIn = requestParameters?.usersDepartmentIdIn;\n const usersIdIn = requestParameters?.usersIdIn;\n const usersLocationIdIn = requestParameters?.usersLocationIdIn;\n const usersSearch = requestParameters?.usersSearch;\n const usersStatusIn = requestParameters?.usersStatusIn;\n const usersSuperviseeIdIn = requestParameters?.usersSuperviseeIdIn;\n const usersSupervisorIdIn = requestParameters?.usersSupervisorIdIn;\n const usersWorkTypeIdIn = requestParameters?.usersWorkTypeIdIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (usersBranchIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersBranchIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__branch__id__in\",\n );\n }\n if (usersDepartmentIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersDepartmentIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__department__id__in\",\n );\n }\n if (usersIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__id__in\",\n );\n }\n if (usersLocationIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersLocationIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__location__id__in\",\n );\n }\n if (usersSearch !== undefined && usersSearch !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>usersSearch,\n \"users__search\",\n );\n }\n if (usersStatusIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersStatusIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__status__in\",\n );\n }\n if (usersSuperviseeIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersSuperviseeIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__supervisee_id__in\",\n );\n }\n if (usersSupervisorIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersSupervisorIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__supervisor_id__in\",\n );\n }\n if (usersWorkTypeIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...usersWorkTypeIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"users__work_type__id__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/branches/users-stats/`;\n return this.httpClient.request<PaginatedBranchUserStatsListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { DepartmentDto } from \"../model/department.dto\";\n// @ts-ignore\nimport { DepartmentRequestDto } from \"../model/department-request.dto\";\n// @ts-ignore\nimport { DepartmentsCreateErrorResponse400Dto } from \"../model/departments-create-error-response400.dto\";\n// @ts-ignore\nimport { DepartmentsDestroyErrorResponse400Dto } from \"../model/departments-destroy-error-response400.dto\";\n// @ts-ignore\nimport { DepartmentsListErrorResponse400Dto } from \"../model/departments-list-error-response400.dto\";\n// @ts-ignore\nimport { DepartmentsRetrieveErrorResponse400Dto } from \"../model/departments-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { DepartmentsUpdateErrorResponse400Dto } from \"../model/departments-update-error-response400.dto\";\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedDepartmentListDto } from \"../model/paginated-department-list.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n DepartmentsApiServiceInterface,\n DepartmentsCreateRequestParams,\n DepartmentsDestroyRequestParams,\n DepartmentsListRequestParams,\n DepartmentsRetrieveRequestParams,\n DepartmentsUpdateRequestParams,\n} from \"./departments-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class DepartmentsApiService implements DepartmentsApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for Department model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public departmentsCreate(\n requestParameters?: DepartmentsCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<DepartmentDto>;\n public departmentsCreate(\n requestParameters?: DepartmentsCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<DepartmentDto>>;\n public departmentsCreate(\n requestParameters?: DepartmentsCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<DepartmentDto>>;\n public departmentsCreate(\n requestParameters?: DepartmentsCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const departmentRequestDto = requestParameters?.departmentRequestDto;\n if (departmentRequestDto === null || departmentRequestDto === undefined) {\n throw new Error(\n \"Required parameter departmentRequestDto was null or undefined when calling departmentsCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/departments/`;\n return this.httpClient.request<DepartmentDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: departmentRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Department model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public departmentsDestroy(\n requestParameters?: DepartmentsDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public departmentsDestroy(\n requestParameters?: DepartmentsDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public departmentsDestroy(\n requestParameters?: DepartmentsDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public departmentsDestroy(\n requestParameters?: DepartmentsDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling departmentsDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/departments/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Department model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public departmentsList(\n requestParameters?: DepartmentsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedDepartmentListDto>;\n public departmentsList(\n requestParameters?: DepartmentsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedDepartmentListDto>>;\n public departmentsList(\n requestParameters?: DepartmentsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedDepartmentListDto>>;\n public departmentsList(\n requestParameters?: DepartmentsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const name = requestParameters?.name;\n const nameIn = requestParameters?.nameIn;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n const utilization = requestParameters?.utilization;\n const workTypesIdIn = requestParameters?.workTypesIdIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (name !== undefined && name !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"name\",\n );\n }\n if (nameIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...nameIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"name__in\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (utilization !== undefined && utilization !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>utilization,\n \"utilization\",\n );\n }\n if (workTypesIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...workTypesIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"work_types__id__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/departments/`;\n return this.httpClient.request<PaginatedDepartmentListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Department model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public departmentsRetrieve(\n requestParameters?: DepartmentsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<DepartmentDto>;\n public departmentsRetrieve(\n requestParameters?: DepartmentsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<DepartmentDto>>;\n public departmentsRetrieve(\n requestParameters?: DepartmentsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<DepartmentDto>>;\n public departmentsRetrieve(\n requestParameters?: DepartmentsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling departmentsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/departments/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<DepartmentDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Department model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public departmentsUpdate(\n requestParameters?: DepartmentsUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<DepartmentDto>;\n public departmentsUpdate(\n requestParameters?: DepartmentsUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<DepartmentDto>>;\n public departmentsUpdate(\n requestParameters?: DepartmentsUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<DepartmentDto>>;\n public departmentsUpdate(\n requestParameters?: DepartmentsUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling departmentsUpdate.\",\n );\n }\n const departmentRequestDto = requestParameters?.departmentRequestDto;\n if (departmentRequestDto === null || departmentRequestDto === undefined) {\n throw new Error(\n \"Required parameter departmentRequestDto was null or undefined when calling departmentsUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/departments/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<DepartmentDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: departmentRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { DismissalReasonsCreateErrorResponse400Dto } from \"../model/dismissal-reasons-create-error-response400.dto\";\n// @ts-ignore\nimport { DismissalReasonsDestroyErrorResponse400Dto } from \"../model/dismissal-reasons-destroy-error-response400.dto\";\n// @ts-ignore\nimport { DismissalReasonsListErrorResponse400Dto } from \"../model/dismissal-reasons-list-error-response400.dto\";\n// @ts-ignore\nimport { DismissalReasonsRetrieveErrorResponse400Dto } from \"../model/dismissal-reasons-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { DismissalReasonsUpdateErrorResponse400Dto } from \"../model/dismissal-reasons-update-error-response400.dto\";\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedSimpleDismissalReasonListDto } from \"../model/paginated-simple-dismissal-reason-list.dto\";\n// @ts-ignore\nimport { SimpleDismissalReasonDto } from \"../model/simple-dismissal-reason.dto\";\n// @ts-ignore\nimport { SimpleDismissalReasonRequestDto } from \"../model/simple-dismissal-reason-request.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n DismissalReasonsApiServiceInterface,\n DismissalReasonsCreateRequestParams,\n DismissalReasonsDestroyRequestParams,\n DismissalReasonsListRequestParams,\n DismissalReasonsRetrieveRequestParams,\n DismissalReasonsUpdateRequestParams,\n} from \"./dismissal-reasons-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class DismissalReasonsApiService\n implements DismissalReasonsApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for DismissalReason model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public dismissalReasonsCreate(\n requestParameters?: DismissalReasonsCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SimpleDismissalReasonDto>;\n public dismissalReasonsCreate(\n requestParameters?: DismissalReasonsCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SimpleDismissalReasonDto>>;\n public dismissalReasonsCreate(\n requestParameters?: DismissalReasonsCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SimpleDismissalReasonDto>>;\n public dismissalReasonsCreate(\n requestParameters?: DismissalReasonsCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const simpleDismissalReasonRequestDto =\n requestParameters?.simpleDismissalReasonRequestDto;\n if (\n simpleDismissalReasonRequestDto === null ||\n simpleDismissalReasonRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter simpleDismissalReasonRequestDto was null or undefined when calling dismissalReasonsCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/dismissal-reasons/`;\n return this.httpClient.request<SimpleDismissalReasonDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: simpleDismissalReasonRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for DismissalReason model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public dismissalReasonsDestroy(\n requestParameters?: DismissalReasonsDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public dismissalReasonsDestroy(\n requestParameters?: DismissalReasonsDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public dismissalReasonsDestroy(\n requestParameters?: DismissalReasonsDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public dismissalReasonsDestroy(\n requestParameters?: DismissalReasonsDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling dismissalReasonsDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/dismissal-reasons/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for DismissalReason model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public dismissalReasonsList(\n requestParameters?: DismissalReasonsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedSimpleDismissalReasonListDto>;\n public dismissalReasonsList(\n requestParameters?: DismissalReasonsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedSimpleDismissalReasonListDto>>;\n public dismissalReasonsList(\n requestParameters?: DismissalReasonsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedSimpleDismissalReasonListDto>>;\n public dismissalReasonsList(\n requestParameters?: DismissalReasonsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const name = requestParameters?.name;\n const nameIn = requestParameters?.nameIn;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n const type = requestParameters?.type;\n const typeIn = requestParameters?.typeIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (name !== undefined && name !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"name\",\n );\n }\n if (nameIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...nameIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"name__in\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (type !== undefined && type !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>type,\n \"type\",\n );\n }\n if (typeIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...typeIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"type__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/dismissal-reasons/`;\n return this.httpClient.request<PaginatedSimpleDismissalReasonListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for DismissalReason model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public dismissalReasonsRetrieve(\n requestParameters?: DismissalReasonsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SimpleDismissalReasonDto>;\n public dismissalReasonsRetrieve(\n requestParameters?: DismissalReasonsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SimpleDismissalReasonDto>>;\n public dismissalReasonsRetrieve(\n requestParameters?: DismissalReasonsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SimpleDismissalReasonDto>>;\n public dismissalReasonsRetrieve(\n requestParameters?: DismissalReasonsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling dismissalReasonsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/dismissal-reasons/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<SimpleDismissalReasonDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for DismissalReason model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public dismissalReasonsUpdate(\n requestParameters?: DismissalReasonsUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SimpleDismissalReasonDto>;\n public dismissalReasonsUpdate(\n requestParameters?: DismissalReasonsUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SimpleDismissalReasonDto>>;\n public dismissalReasonsUpdate(\n requestParameters?: DismissalReasonsUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SimpleDismissalReasonDto>>;\n public dismissalReasonsUpdate(\n requestParameters?: DismissalReasonsUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling dismissalReasonsUpdate.\",\n );\n }\n const simpleDismissalReasonRequestDto =\n requestParameters?.simpleDismissalReasonRequestDto;\n if (\n simpleDismissalReasonRequestDto === null ||\n simpleDismissalReasonRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter simpleDismissalReasonRequestDto was null or undefined when calling dismissalReasonsUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/dismissal-reasons/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<SimpleDismissalReasonDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: simpleDismissalReasonRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { CreateJiraProjectDto } from \"../model/create-jira-project.dto\";\n// @ts-ignore\nimport { CreateJiraProjectRequestDto } from \"../model/create-jira-project-request.dto\";\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { JiraClientCreateProjectCreateErrorResponse400Dto } from \"../model/jira-client-create-project-create-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n JiraClientApiServiceInterface,\n JiraClientCreateProjectCreateRequestParams,\n} from \"./jira-client-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class JiraClientApiService implements JiraClientApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Create new project in jira.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public jiraClientCreateProjectCreate(\n requestParameters?: JiraClientCreateProjectCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<CreateJiraProjectDto>;\n public jiraClientCreateProjectCreate(\n requestParameters?: JiraClientCreateProjectCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<CreateJiraProjectDto>>;\n public jiraClientCreateProjectCreate(\n requestParameters?: JiraClientCreateProjectCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<CreateJiraProjectDto>>;\n public jiraClientCreateProjectCreate(\n requestParameters?: JiraClientCreateProjectCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const createJiraProjectRequestDto =\n requestParameters?.createJiraProjectRequestDto;\n if (\n createJiraProjectRequestDto === null ||\n createJiraProjectRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter createJiraProjectRequestDto was null or undefined when calling jiraClientCreateProjectCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/jira-client/create-project`;\n return this.httpClient.request<CreateJiraProjectDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: createJiraProjectRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { JiraInstanceDto } from \"../model/jira-instance.dto\";\n// @ts-ignore\nimport { JiraInstancesListErrorResponse400Dto } from \"../model/jira-instances-list-error-response400.dto\";\n// @ts-ignore\nimport { JiraInstancesRetrieveErrorResponse400Dto } from \"../model/jira-instances-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { PaginatedJiraInstanceListDto } from \"../model/paginated-jira-instance-list.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n JiraInstancesApiServiceInterface,\n JiraInstancesListRequestParams,\n JiraInstancesRetrieveRequestParams,\n} from \"./jira-instances-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class JiraInstancesApiService\n implements JiraInstancesApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Api viewset for JiraInstance model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public jiraInstancesList(\n requestParameters?: JiraInstancesListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedJiraInstanceListDto>;\n public jiraInstancesList(\n requestParameters?: JiraInstancesListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedJiraInstanceListDto>>;\n public jiraInstancesList(\n requestParameters?: JiraInstancesListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedJiraInstanceListDto>>;\n public jiraInstancesList(\n requestParameters?: JiraInstancesListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/jira-instances/`;\n return this.httpClient.request<PaginatedJiraInstanceListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for JiraInstance model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public jiraInstancesRetrieve(\n requestParameters?: JiraInstancesRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<JiraInstanceDto>;\n public jiraInstancesRetrieve(\n requestParameters?: JiraInstancesRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<JiraInstanceDto>>;\n public jiraInstancesRetrieve(\n requestParameters?: JiraInstancesRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<JiraInstanceDto>>;\n public jiraInstancesRetrieve(\n requestParameters?: JiraInstancesRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling jiraInstancesRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/jira-instances/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<JiraInstanceDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { LocationDto } from \"../model/location.dto\";\n// @ts-ignore\nimport { LocationRequestDto } from \"../model/location-request.dto\";\n// @ts-ignore\nimport { LocationsCreateErrorResponse400Dto } from \"../model/locations-create-error-response400.dto\";\n// @ts-ignore\nimport { LocationsDestroyErrorResponse400Dto } from \"../model/locations-destroy-error-response400.dto\";\n// @ts-ignore\nimport { LocationsListErrorResponse400Dto } from \"../model/locations-list-error-response400.dto\";\n// @ts-ignore\nimport { LocationsRetrieveErrorResponse400Dto } from \"../model/locations-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { LocationsUpdateErrorResponse400Dto } from \"../model/locations-update-error-response400.dto\";\n// @ts-ignore\nimport { PaginatedLocationListDto } from \"../model/paginated-location-list.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n LocationsApiServiceInterface,\n LocationsCreateRequestParams,\n LocationsDestroyRequestParams,\n LocationsListRequestParams,\n LocationsRetrieveRequestParams,\n LocationsUpdateRequestParams,\n} from \"./locations-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class LocationsApiService implements LocationsApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for Location model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public locationsCreate(\n requestParameters?: LocationsCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<LocationDto>;\n public locationsCreate(\n requestParameters?: LocationsCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<LocationDto>>;\n public locationsCreate(\n requestParameters?: LocationsCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<LocationDto>>;\n public locationsCreate(\n requestParameters?: LocationsCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const locationRequestDto = requestParameters?.locationRequestDto;\n if (locationRequestDto === null || locationRequestDto === undefined) {\n throw new Error(\n \"Required parameter locationRequestDto was null or undefined when calling locationsCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/locations/`;\n return this.httpClient.request<LocationDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: locationRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Location model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public locationsDestroy(\n requestParameters?: LocationsDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public locationsDestroy(\n requestParameters?: LocationsDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public locationsDestroy(\n requestParameters?: LocationsDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public locationsDestroy(\n requestParameters?: LocationsDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling locationsDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/locations/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Location model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public locationsList(\n requestParameters?: LocationsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedLocationListDto>;\n public locationsList(\n requestParameters?: LocationsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedLocationListDto>>;\n public locationsList(\n requestParameters?: LocationsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedLocationListDto>>;\n public locationsList(\n requestParameters?: LocationsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const name = requestParameters?.name;\n const nameIn = requestParameters?.nameIn;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n const timezone = requestParameters?.timezone;\n const timezoneIn = requestParameters?.timezoneIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (name !== undefined && name !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"name\",\n );\n }\n if (nameIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...nameIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"name__in\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (timezone !== undefined && timezone !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>timezone,\n \"timezone\",\n );\n }\n if (timezoneIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...timezoneIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"timezone__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/locations/`;\n return this.httpClient.request<PaginatedLocationListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Location model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public locationsRetrieve(\n requestParameters?: LocationsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<LocationDto>;\n public locationsRetrieve(\n requestParameters?: LocationsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<LocationDto>>;\n public locationsRetrieve(\n requestParameters?: LocationsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<LocationDto>>;\n public locationsRetrieve(\n requestParameters?: LocationsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling locationsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/locations/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<LocationDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for Location model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public locationsUpdate(\n requestParameters?: LocationsUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<LocationDto>;\n public locationsUpdate(\n requestParameters?: LocationsUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<LocationDto>>;\n public locationsUpdate(\n requestParameters?: LocationsUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<LocationDto>>;\n public locationsUpdate(\n requestParameters?: LocationsUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling locationsUpdate.\",\n );\n }\n const locationRequestDto = requestParameters?.locationRequestDto;\n if (locationRequestDto === null || locationRequestDto === undefined) {\n throw new Error(\n \"Required parameter locationRequestDto was null or undefined when calling locationsUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/locations/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<LocationDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: locationRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PermissionDataDto } from \"../model/permission-data.dto\";\n// @ts-ignore\nimport { PermissionDataRetrieveErrorResponse400Dto } from \"../model/permission-data-retrieve-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { PermissionDataApiServiceInterface } from \"./permission-data-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class PermissionDataApiService\n implements PermissionDataApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Get permission data.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionDataRetrieve(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PermissionDataDto>;\n public permissionDataRetrieve(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PermissionDataDto>>;\n public permissionDataRetrieve(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PermissionDataDto>>;\n public permissionDataRetrieve(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/permission-data`;\n return this.httpClient.request<PermissionDataDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { ProfileDto } from \"../model/profile.dto\";\n// @ts-ignore\nimport { ProfileRequestDto } from \"../model/profile-request.dto\";\n// @ts-ignore\nimport { ProfileRetrieveErrorResponse400Dto } from \"../model/profile-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { ProfileUpdateErrorResponse400Dto } from \"../model/profile-update-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n ProfileApiServiceInterface,\n ProfileUpdateRequestParams,\n} from \"./profile-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class ProfileApiService implements ProfileApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Viewset for managing current user.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public profileRetrieve(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<ProfileDto>;\n public profileRetrieve(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<ProfileDto>>;\n public profileRetrieve(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<ProfileDto>>;\n public profileRetrieve(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/profile/`;\n return this.httpClient.request<ProfileDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Viewset for managing current user.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public profileUpdate(\n requestParameters?: ProfileUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<ProfileDto>;\n public profileUpdate(\n requestParameters?: ProfileUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<ProfileDto>>;\n public profileUpdate(\n requestParameters?: ProfileUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<ProfileDto>>;\n public profileUpdate(\n requestParameters?: ProfileUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const profileRequestDto = requestParameters?.profileRequestDto;\n if (profileRequestDto === null || profileRequestDto === undefined) {\n throw new Error(\n \"Required parameter profileRequestDto was null or undefined when calling profileUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/profile/`;\n return this.httpClient.request<ProfileDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: profileRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedProjectListDto } from \"../model/paginated-project-list.dto\";\n// @ts-ignore\nimport { ProjectDto } from \"../model/project.dto\";\n// @ts-ignore\nimport { ProjectsListErrorResponse400Dto } from \"../model/projects-list-error-response400.dto\";\n// @ts-ignore\nimport { ProjectsRetrieveErrorResponse400Dto } from \"../model/projects-retrieve-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n ProjectsApiServiceInterface,\n ProjectsListRequestParams,\n ProjectsRetrieveRequestParams,\n} from \"./projects-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class ProjectsApiService implements ProjectsApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Api viewset for Project model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public projectsList(\n requestParameters?: ProjectsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedProjectListDto>;\n public projectsList(\n requestParameters?: ProjectsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedProjectListDto>>;\n public projectsList(\n requestParameters?: ProjectsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedProjectListDto>>;\n public projectsList(\n requestParameters?: ProjectsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/projects/`;\n return this.httpClient.request<PaginatedProjectListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for Project model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public projectsRetrieve(\n requestParameters?: ProjectsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<ProjectDto>;\n public projectsRetrieve(\n requestParameters?: ProjectsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<ProjectDto>>;\n public projectsRetrieve(\n requestParameters?: ProjectsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<ProjectDto>>;\n public projectsRetrieve(\n requestParameters?: ProjectsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling projectsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/projects/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<ProjectDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedRoleListDto } from \"../model/paginated-role-list.dto\";\n// @ts-ignore\nimport { RoleDto } from \"../model/role.dto\";\n// @ts-ignore\nimport { RoleRequestDto } from \"../model/role-request.dto\";\n// @ts-ignore\nimport { RolesCreateErrorResponse400Dto } from \"../model/roles-create-error-response400.dto\";\n// @ts-ignore\nimport { RolesDestroyErrorResponse400Dto } from \"../model/roles-destroy-error-response400.dto\";\n// @ts-ignore\nimport { RolesListErrorResponse400Dto } from \"../model/roles-list-error-response400.dto\";\n// @ts-ignore\nimport { RolesRetrieveErrorResponse400Dto } from \"../model/roles-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { RolesUpdateErrorResponse400Dto } from \"../model/roles-update-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n RolesApiServiceInterface,\n RolesCreateRequestParams,\n RolesDestroyRequestParams,\n RolesListRequestParams,\n RolesRetrieveRequestParams,\n RolesUpdateRequestParams,\n} from \"./roles-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RolesApiService implements RolesApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for managing roles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rolesCreate(\n requestParameters?: RolesCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RoleDto>;\n public rolesCreate(\n requestParameters?: RolesCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RoleDto>>;\n public rolesCreate(\n requestParameters?: RolesCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RoleDto>>;\n public rolesCreate(\n requestParameters?: RolesCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const roleRequestDto = requestParameters?.roleRequestDto;\n if (roleRequestDto === null || roleRequestDto === undefined) {\n throw new Error(\n \"Required parameter roleRequestDto was null or undefined when calling rolesCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/roles/`;\n return this.httpClient.request<RoleDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: roleRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for managing roles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rolesDestroy(\n requestParameters?: RolesDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rolesDestroy(\n requestParameters?: RolesDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rolesDestroy(\n requestParameters?: RolesDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rolesDestroy(\n requestParameters?: RolesDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rolesDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/roles/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for managing roles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rolesList(\n requestParameters?: RolesListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedRoleListDto>;\n public rolesList(\n requestParameters?: RolesListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedRoleListDto>>;\n public rolesList(\n requestParameters?: RolesListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedRoleListDto>>;\n public rolesList(\n requestParameters?: RolesListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const permissionsPermission = requestParameters?.permissionsPermission;\n const permissionsPermissionIn = requestParameters?.permissionsPermissionIn;\n const permissionsScope = requestParameters?.permissionsScope;\n const permissionsScopeIn = requestParameters?.permissionsScopeIn;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (permissionsPermission !== undefined && permissionsPermission !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>permissionsPermission,\n \"permissions__permission\",\n );\n }\n if (permissionsPermissionIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...permissionsPermissionIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"permissions__permission__in\",\n );\n }\n if (permissionsScope !== undefined && permissionsScope !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>permissionsScope,\n \"permissions__scope\",\n );\n }\n if (permissionsScopeIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...permissionsScopeIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"permissions__scope__in\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/roles/`;\n return this.httpClient.request<PaginatedRoleListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for managing roles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rolesRetrieve(\n requestParameters?: RolesRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RoleDto>;\n public rolesRetrieve(\n requestParameters?: RolesRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RoleDto>>;\n public rolesRetrieve(\n requestParameters?: RolesRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RoleDto>>;\n public rolesRetrieve(\n requestParameters?: RolesRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rolesRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/roles/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<RoleDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for managing roles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rolesUpdate(\n requestParameters?: RolesUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RoleDto>;\n public rolesUpdate(\n requestParameters?: RolesUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RoleDto>>;\n public rolesUpdate(\n requestParameters?: RolesUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RoleDto>>;\n public rolesUpdate(\n requestParameters?: RolesUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rolesUpdate.\",\n );\n }\n const roleRequestDto = requestParameters?.roleRequestDto;\n if (roleRequestDto === null || roleRequestDto === undefined) {\n throw new Error(\n \"Required parameter roleRequestDto was null or undefined when calling rolesUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/roles/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<RoleDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: roleRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { S3GetParamsCreateErrorResponse400Dto } from \"../model/s3-get-params-create-error-response400.dto\";\n// @ts-ignore\nimport { S3RequestParamsRequestDto } from \"../model/s3-request-params-request.dto\";\n// @ts-ignore\nimport { S3UploadDto } from \"../model/s3-upload.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n S3ApiServiceInterface,\n S3GetParamsCreateRequestParams,\n} from \"./s3-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class S3ApiService implements S3ApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Get parameters for upload to S3 bucket. Current endpoint returns all required for s3 upload data, which should be later sent to &#x60;url&#x60; as &#x60;form-data&#x60; url with \\&#39;file\\&#39;. Workflow: First, you make request to this endpoint. Then send response data to &#x60;url&#x60; via &#x60;POST&#x60; as form-data with file included. In response you will get an url which you can use in API for value of file related fields like avatar for example.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public s3GetParamsCreate(\n requestParameters?: S3GetParamsCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<S3UploadDto>;\n public s3GetParamsCreate(\n requestParameters?: S3GetParamsCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<S3UploadDto>>;\n public s3GetParamsCreate(\n requestParameters?: S3GetParamsCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<S3UploadDto>>;\n public s3GetParamsCreate(\n requestParameters?: S3GetParamsCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const s3RequestParamsRequestDto =\n requestParameters?.s3RequestParamsRequestDto;\n if (\n s3RequestParamsRequestDto === null ||\n s3RequestParamsRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter s3RequestParamsRequestDto was null or undefined when calling s3GetParamsCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/s3/get-params/`;\n return this.httpClient.request<S3UploadDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: s3RequestParamsRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PeriodDto } from \"../model/period.dto\";\n// @ts-ignore\nimport { SearchPeriodsListErrorResponse400Dto } from \"../model/search-periods-list-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n SearchPeriodsApiServiceInterface,\n SearchPeriodsListRequestParams,\n} from \"./search-periods-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class SearchPeriodsApiService\n implements SearchPeriodsApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Api viewset for searching user/branch periods users birthdays.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public searchPeriodsList(\n requestParameters?: SearchPeriodsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<Array<PeriodDto>>;\n public searchPeriodsList(\n requestParameters?: SearchPeriodsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<Array<PeriodDto>>>;\n public searchPeriodsList(\n requestParameters?: SearchPeriodsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<Array<PeriodDto>>>;\n public searchPeriodsList(\n requestParameters?: SearchPeriodsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const periodGte = requestParameters?.periodGte;\n if (periodGte === null || periodGte === undefined) {\n throw new Error(\n \"Required parameter periodGte was null or undefined when calling searchPeriodsList.\",\n );\n }\n const periodLte = requestParameters?.periodLte;\n if (periodLte === null || periodLte === undefined) {\n throw new Error(\n \"Required parameter periodLte was null or undefined when calling searchPeriodsList.\",\n );\n }\n const branchIn = requestParameters?.branchIn;\n const status = requestParameters?.status;\n const type = requestParameters?.type;\n const userBranchIn = requestParameters?.userBranchIn;\n const userDepartmentIn = requestParameters?.userDepartmentIn;\n const userIn = requestParameters?.userIn;\n const userStatusIn = requestParameters?.userStatusIn;\n const userSupervisees = requestParameters?.userSupervisees;\n const userSupervisors = requestParameters?.userSupervisors;\n const userWorkTypeIn = requestParameters?.userWorkTypeIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (branchIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...branchIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"branch__in\",\n );\n }\n if (periodGte !== undefined && periodGte !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>periodGte,\n \"period__gte\",\n );\n }\n if (periodLte !== undefined && periodLte !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>periodLte,\n \"period__lte\",\n );\n }\n if (status) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...status].join(COLLECTION_FORMATS[\"csv\"]),\n \"status\",\n );\n }\n if (type) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...type].join(COLLECTION_FORMATS[\"csv\"]),\n \"type\",\n );\n }\n if (userBranchIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userBranchIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__branch__in\",\n );\n }\n if (userDepartmentIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userDepartmentIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__department__in\",\n );\n }\n if (userIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__in\",\n );\n }\n if (userStatusIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userStatusIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__status__in\",\n );\n }\n if (userSupervisees) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userSupervisees].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__supervisees\",\n );\n }\n if (userSupervisors) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userSupervisors].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__supervisors\",\n );\n }\n if (userWorkTypeIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userWorkTypeIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__work_type__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/search-periods/`;\n return this.httpClient.request<Array<PeriodDto>>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { DebugLoginRequestDto } from \"../model/debug-login-request.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { LoginOpenIDRequestDto } from \"../model/login-open-id-request.dto\";\n// @ts-ignore\nimport { OpenIDCodeExchangeRequestDto } from \"../model/open-id-code-exchange-request.dto\";\n// @ts-ignore\nimport { OpenIDRedirectDto } from \"../model/open-id-redirect.dto\";\n// @ts-ignore\nimport { SsoCodeExchangeCreateErrorResponse400Dto } from \"../model/sso-code-exchange-create-error-response400.dto\";\n// @ts-ignore\nimport { SsoDebugCreateErrorResponse400Dto } from \"../model/sso-debug-create-error-response400.dto\";\n// @ts-ignore\nimport { SsoStartCreateErrorResponse400Dto } from \"../model/sso-start-create-error-response400.dto\";\n// @ts-ignore\nimport { TokenObtainPairDto } from \"../model/token-obtain-pair.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n SsoApiServiceInterface,\n SsoCodeExchangeCreateRequestParams,\n SsoDebugCreateRequestParams,\n SsoStartCreateRequestParams,\n} from \"./sso-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class SsoApiService implements SsoApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Exchange openid code on jwt token.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public ssoCodeExchangeCreate(\n requestParameters?: SsoCodeExchangeCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenObtainPairDto>;\n public ssoCodeExchangeCreate(\n requestParameters?: SsoCodeExchangeCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenObtainPairDto>>;\n public ssoCodeExchangeCreate(\n requestParameters?: SsoCodeExchangeCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenObtainPairDto>>;\n public ssoCodeExchangeCreate(\n requestParameters?: SsoCodeExchangeCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const openIDCodeExchangeRequestDto =\n requestParameters?.openIDCodeExchangeRequestDto;\n if (\n openIDCodeExchangeRequestDto === null ||\n openIDCodeExchangeRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter openIDCodeExchangeRequestDto was null or undefined when calling ssoCodeExchangeCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/sso/code-exchange`;\n return this.httpClient.request<TokenObtainPairDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: openIDCodeExchangeRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Login via email(only available in debug mode).\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public ssoDebugCreate(\n requestParameters?: SsoDebugCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenObtainPairDto>;\n public ssoDebugCreate(\n requestParameters?: SsoDebugCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenObtainPairDto>>;\n public ssoDebugCreate(\n requestParameters?: SsoDebugCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenObtainPairDto>>;\n public ssoDebugCreate(\n requestParameters?: SsoDebugCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const debugLoginRequestDto = requestParameters?.debugLoginRequestDto;\n if (debugLoginRequestDto === null || debugLoginRequestDto === undefined) {\n throw new Error(\n \"Required parameter debugLoginRequestDto was null or undefined when calling ssoDebugCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/sso/debug`;\n return this.httpClient.request<TokenObtainPairDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: debugLoginRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get url to start auth process via openid. Workflow of authentication via sso: First you use this endpoint to get url for authentication and redirect user to it. After authentication sso, with redirect user to uri you specified. In redirect\\&#39;s queries params you will find &#x60;code&#x60; which can be used to get jwt token.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public ssoStartCreate(\n requestParameters?: SsoStartCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<OpenIDRedirectDto>;\n public ssoStartCreate(\n requestParameters?: SsoStartCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<OpenIDRedirectDto>>;\n public ssoStartCreate(\n requestParameters?: SsoStartCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<OpenIDRedirectDto>>;\n public ssoStartCreate(\n requestParameters?: SsoStartCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const loginOpenIDRequestDto = requestParameters?.loginOpenIDRequestDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/sso/start`;\n return this.httpClient.request<OpenIDRedirectDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: loginOpenIDRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { TokenRefreshCreateErrorResponse400Dto } from \"../model/token-refresh-create-error-response400.dto\";\n// @ts-ignore\nimport { TokenRefreshDto } from \"../model/token-refresh.dto\";\n// @ts-ignore\nimport { TokenRefreshRequestDto } from \"../model/token-refresh-request.dto\";\n// @ts-ignore\nimport { TokenVerifyCreateErrorResponse400Dto } from \"../model/token-verify-create-error-response400.dto\";\n// @ts-ignore\nimport { TokenVerifyRequestDto } from \"../model/token-verify-request.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n TokenApiServiceInterface,\n TokenRefreshCreateRequestParams,\n TokenVerifyCreateRequestParams,\n} from \"./token-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class TokenApiService implements TokenApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Takes a refresh type JSON web token and returns an access type JSON web token if the refresh token is valid.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public tokenRefreshCreate(\n requestParameters?: TokenRefreshCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenRefreshDto>;\n public tokenRefreshCreate(\n requestParameters?: TokenRefreshCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenRefreshDto>>;\n public tokenRefreshCreate(\n requestParameters?: TokenRefreshCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenRefreshDto>>;\n public tokenRefreshCreate(\n requestParameters?: TokenRefreshCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const tokenRefreshRequestDto = requestParameters?.tokenRefreshRequestDto;\n if (\n tokenRefreshRequestDto === null ||\n tokenRefreshRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter tokenRefreshRequestDto was null or undefined when calling tokenRefreshCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/token/refresh/`;\n return this.httpClient.request<TokenRefreshDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: tokenRefreshRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Takes a token and indicates if it is valid. This view provides no information about a token\\&#39;s fitness for a particular use.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public tokenVerifyCreate(\n requestParameters?: TokenVerifyCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public tokenVerifyCreate(\n requestParameters?: TokenVerifyCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public tokenVerifyCreate(\n requestParameters?: TokenVerifyCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public tokenVerifyCreate(\n requestParameters?: TokenVerifyCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const tokenVerifyRequestDto = requestParameters?.tokenVerifyRequestDto;\n if (tokenVerifyRequestDto === null || tokenVerifyRequestDto === undefined) {\n throw new Error(\n \"Required parameter tokenVerifyRequestDto was null or undefined when calling tokenVerifyCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/token/verify/`;\n return this.httpClient.request<any>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: tokenVerifyRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedUserCapacityListDto } from \"../model/paginated-user-capacity-list.dto\";\n// @ts-ignore\nimport { PaginatedUserSumCapacityListDto } from \"../model/paginated-user-sum-capacity-list.dto\";\n// @ts-ignore\nimport { UserCapacitiesCalculateCapacityCreateErrorResponse400Dto } from \"../model/user-capacities-calculate-capacity-create-error-response400.dto\";\n// @ts-ignore\nimport { UserCapacitiesGetPeriodCapacityListErrorResponse400Dto } from \"../model/user-capacities-get-period-capacity-list-error-response400.dto\";\n// @ts-ignore\nimport { UserCapacitiesListErrorResponse400Dto } from \"../model/user-capacities-list-error-response400.dto\";\n// @ts-ignore\nimport { UserCapacitiesRetrieveErrorResponse400Dto } from \"../model/user-capacities-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { UserCapacityDto } from \"../model/user-capacity.dto\";\n// @ts-ignore\nimport { UserCapacityRequestDto } from \"../model/user-capacity-request.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n UserCapacitiesApiServiceInterface,\n UserCapacitiesCalculateCapacityCreateRequestParams,\n UserCapacitiesGetPeriodCapacityListRequestParams,\n UserCapacitiesListRequestParams,\n UserCapacitiesRetrieveRequestParams,\n} from \"./user-capacities-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserCapacitiesApiService\n implements UserCapacitiesApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Run calculate capacity task.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userCapacitiesCalculateCapacityCreate(\n requestParameters?: UserCapacitiesCalculateCapacityCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserCapacityDto>;\n public userCapacitiesCalculateCapacityCreate(\n requestParameters?: UserCapacitiesCalculateCapacityCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserCapacityDto>>;\n public userCapacitiesCalculateCapacityCreate(\n requestParameters?: UserCapacitiesCalculateCapacityCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserCapacityDto>>;\n public userCapacitiesCalculateCapacityCreate(\n requestParameters?: UserCapacitiesCalculateCapacityCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userCapacityRequestDto = requestParameters?.userCapacityRequestDto;\n if (\n userCapacityRequestDto === null ||\n userCapacityRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter userCapacityRequestDto was null or undefined when calling userCapacitiesCalculateCapacityCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-capacities/calculate-capacity/`;\n return this.httpClient.request<UserCapacityDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userCapacityRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get capacity sum for period.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userCapacitiesGetPeriodCapacityList(\n requestParameters?: UserCapacitiesGetPeriodCapacityListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedUserSumCapacityListDto>;\n public userCapacitiesGetPeriodCapacityList(\n requestParameters?: UserCapacitiesGetPeriodCapacityListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedUserSumCapacityListDto>>;\n public userCapacitiesGetPeriodCapacityList(\n requestParameters?: UserCapacitiesGetPeriodCapacityListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedUserSumCapacityListDto>>;\n public userCapacitiesGetPeriodCapacityList(\n requestParameters?: UserCapacitiesGetPeriodCapacityListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const periodType = requestParameters?.periodType;\n if (periodType === null || periodType === undefined) {\n throw new Error(\n \"Required parameter periodType was null or undefined when calling userCapacitiesGetPeriodCapacityList.\",\n );\n }\n const dateGte = requestParameters?.dateGte;\n const dateLte = requestParameters?.dateLte;\n const limit = requestParameters?.limit;\n const objectIds = requestParameters?.objectIds;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (dateGte !== undefined && dateGte !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>dateGte,\n \"date__gte\",\n );\n }\n if (dateLte !== undefined && dateLte !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>dateLte,\n \"date__lte\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (objectIds) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...objectIds].join(COLLECTION_FORMATS[\"csv\"]),\n \"object_ids\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (periodType !== undefined && periodType !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>periodType,\n \"period_type\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-capacities/get-period-capacity/`;\n return this.httpClient.request<PaginatedUserSumCapacityListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Readonly view set for UserCapacity model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userCapacitiesList(\n requestParameters?: UserCapacitiesListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedUserCapacityListDto>;\n public userCapacitiesList(\n requestParameters?: UserCapacitiesListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedUserCapacityListDto>>;\n public userCapacitiesList(\n requestParameters?: UserCapacitiesListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedUserCapacityListDto>>;\n public userCapacitiesList(\n requestParameters?: UserCapacitiesListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const branchId = requestParameters?.branchId;\n const branchIdIn = requestParameters?.branchIdIn;\n const dateGte = requestParameters?.dateGte;\n const dateLte = requestParameters?.dateLte;\n const departmentId = requestParameters?.departmentId;\n const departmentIdIn = requestParameters?.departmentIdIn;\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n const userId = requestParameters?.userId;\n const userIdIn = requestParameters?.userIdIn;\n const workTypeId = requestParameters?.workTypeId;\n const workTypeIdIn = requestParameters?.workTypeIdIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (branchId !== undefined && branchId !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>branchId,\n \"branch__id\",\n );\n }\n if (branchIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...branchIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"branch__id__in\",\n );\n }\n if (dateGte !== undefined && dateGte !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>dateGte,\n \"date__gte\",\n );\n }\n if (dateLte !== undefined && dateLte !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>dateLte,\n \"date__lte\",\n );\n }\n if (departmentId !== undefined && departmentId !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>departmentId,\n \"department__id\",\n );\n }\n if (departmentIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...departmentIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"department__id__in\",\n );\n }\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (userId !== undefined && userId !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>userId,\n \"user__id\",\n );\n }\n if (userIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...userIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"user__id__in\",\n );\n }\n if (workTypeId !== undefined && workTypeId !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>workTypeId,\n \"work_type__id\",\n );\n }\n if (workTypeIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...workTypeIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"work_type__id__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-capacities/`;\n return this.httpClient.request<PaginatedUserCapacityListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Readonly view set for UserCapacity model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userCapacitiesRetrieve(\n requestParameters?: UserCapacitiesRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserCapacityDto>;\n public userCapacitiesRetrieve(\n requestParameters?: UserCapacitiesRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserCapacityDto>>;\n public userCapacitiesRetrieve(\n requestParameters?: UserCapacitiesRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserCapacityDto>>;\n public userCapacitiesRetrieve(\n requestParameters?: UserCapacitiesRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling userCapacitiesRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-capacities/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<UserCapacityDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedUserLoginListDto } from \"../model/paginated-user-login-list.dto\";\n// @ts-ignore\nimport { UserLoginDto } from \"../model/user-login.dto\";\n// @ts-ignore\nimport { UserLoginRequestDto } from \"../model/user-login-request.dto\";\n// @ts-ignore\nimport { UserLoginsListErrorResponse400Dto } from \"../model/user-logins-list-error-response400.dto\";\n// @ts-ignore\nimport { UserLoginsRetrieveErrorResponse400Dto } from \"../model/user-logins-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { UserLoginsUpdateErrorResponse400Dto } from \"../model/user-logins-update-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n UserLoginsApiServiceInterface,\n UserLoginsListRequestParams,\n UserLoginsRetrieveRequestParams,\n UserLoginsUpdateRequestParams,\n} from \"./user-logins-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserLoginsApiService implements UserLoginsApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for viewing info about users. Separate endpoint because it\\&#39;s used by admins only to manage permissions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userLoginsList(\n requestParameters?: UserLoginsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedUserLoginListDto>;\n public userLoginsList(\n requestParameters?: UserLoginsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedUserLoginListDto>>;\n public userLoginsList(\n requestParameters?: UserLoginsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedUserLoginListDto>>;\n public userLoginsList(\n requestParameters?: UserLoginsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const branch = requestParameters?.branch;\n const branchIn = requestParameters?.branchIn;\n const department = requestParameters?.department;\n const departmentIn = requestParameters?.departmentIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const role = requestParameters?.role;\n const roleIn = requestParameters?.roleIn;\n const search = requestParameters?.search;\n const workType = requestParameters?.workType;\n const workTypeIn = requestParameters?.workTypeIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (branch !== undefined && branch !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>branch,\n \"branch\",\n );\n }\n if (branchIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...branchIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"branch__in\",\n );\n }\n if (department !== undefined && department !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>department,\n \"department\",\n );\n }\n if (departmentIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...departmentIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"department__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (role !== undefined && role !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>role,\n \"role\",\n );\n }\n if (roleIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...roleIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"role__in\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (workType !== undefined && workType !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>workType,\n \"work_type\",\n );\n }\n if (workTypeIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...workTypeIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"work_type__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-logins/`;\n return this.httpClient.request<PaginatedUserLoginListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing info about users. Separate endpoint because it\\&#39;s used by admins only to manage permissions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userLoginsRetrieve(\n requestParameters?: UserLoginsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserLoginDto>;\n public userLoginsRetrieve(\n requestParameters?: UserLoginsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserLoginDto>>;\n public userLoginsRetrieve(\n requestParameters?: UserLoginsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserLoginDto>>;\n public userLoginsRetrieve(\n requestParameters?: UserLoginsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling userLoginsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-logins/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<UserLoginDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing info about users. Separate endpoint because it\\&#39;s used by admins only to manage permissions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userLoginsUpdate(\n requestParameters?: UserLoginsUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserLoginDto>;\n public userLoginsUpdate(\n requestParameters?: UserLoginsUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserLoginDto>>;\n public userLoginsUpdate(\n requestParameters?: UserLoginsUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserLoginDto>>;\n public userLoginsUpdate(\n requestParameters?: UserLoginsUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling userLoginsUpdate.\",\n );\n }\n const userLoginRequestDto = requestParameters?.userLoginRequestDto;\n if (userLoginRequestDto === null || userLoginRequestDto === undefined) {\n throw new Error(\n \"Required parameter userLoginRequestDto was null or undefined when calling userLoginsUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-logins/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<UserLoginDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userLoginRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedUserPeriodListDto } from \"../model/paginated-user-period-list.dto\";\n// @ts-ignore\nimport { UserPeriodDto } from \"../model/user-period.dto\";\n// @ts-ignore\nimport { UserPeriodsListErrorResponse400Dto } from \"../model/user-periods-list-error-response400.dto\";\n// @ts-ignore\nimport { UserPeriodsRetrieveErrorResponse400Dto } from \"../model/user-periods-retrieve-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n UserPeriodsApiServiceInterface,\n UserPeriodsListRequestParams,\n UserPeriodsRetrieveRequestParams,\n} from \"./user-periods-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserPeriodsApiService implements UserPeriodsApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Api viewset for UserPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userPeriodsList(\n requestParameters?: UserPeriodsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedUserPeriodListDto>;\n public userPeriodsList(\n requestParameters?: UserPeriodsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedUserPeriodListDto>>;\n public userPeriodsList(\n requestParameters?: UserPeriodsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedUserPeriodListDto>>;\n public userPeriodsList(\n requestParameters?: UserPeriodsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-periods/`;\n return this.httpClient.request<PaginatedUserPeriodListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Api viewset for UserPeriod model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userPeriodsRetrieve(\n requestParameters?: UserPeriodsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserPeriodDto>;\n public userPeriodsRetrieve(\n requestParameters?: UserPeriodsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserPeriodDto>>;\n public userPeriodsRetrieve(\n requestParameters?: UserPeriodsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserPeriodDto>>;\n public userPeriodsRetrieve(\n requestParameters?: UserPeriodsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling userPeriodsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-periods/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<UserPeriodDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { UserTimezoneSettingCreateErrorResponse400Dto } from \"../model/user-timezone-setting-create-error-response400.dto\";\n// @ts-ignore\nimport { UserTimezoneSettingDto } from \"../model/user-timezone-setting.dto\";\n// @ts-ignore\nimport { UserTimezoneSettingRequestDto } from \"../model/user-timezone-setting-request.dto\";\n// @ts-ignore\nimport { UserTimezoneSettingRetrieveErrorResponse400Dto } from \"../model/user-timezone-setting-retrieve-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n UserTimezoneSettingApiServiceInterface,\n UserTimezoneSettingCreateRequestParams,\n} from \"./user-timezone-setting-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserTimezoneSettingApiService\n implements UserTimezoneSettingApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Viewset for managing user\\&#39;s timezone settings.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userTimezoneSettingCreate(\n requestParameters?: UserTimezoneSettingCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserTimezoneSettingDto>;\n public userTimezoneSettingCreate(\n requestParameters?: UserTimezoneSettingCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserTimezoneSettingDto>>;\n public userTimezoneSettingCreate(\n requestParameters?: UserTimezoneSettingCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserTimezoneSettingDto>>;\n public userTimezoneSettingCreate(\n requestParameters?: UserTimezoneSettingCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userTimezoneSettingRequestDto =\n requestParameters?.userTimezoneSettingRequestDto;\n if (\n userTimezoneSettingRequestDto === null ||\n userTimezoneSettingRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter userTimezoneSettingRequestDto was null or undefined when calling userTimezoneSettingCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-timezone-setting/`;\n return this.httpClient.request<UserTimezoneSettingDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userTimezoneSettingRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Viewset for managing user\\&#39;s timezone settings.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userTimezoneSettingRetrieve(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserTimezoneSettingDto>;\n public userTimezoneSettingRetrieve(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserTimezoneSettingDto>>;\n public userTimezoneSettingRetrieve(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserTimezoneSettingDto>>;\n public userTimezoneSettingRetrieve(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-timezone-setting/`;\n return this.httpClient.request<UserTimezoneSettingDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedUserTimezoneListDto } from \"../model/paginated-user-timezone-list.dto\";\n// @ts-ignore\nimport { UserTimezoneDto } from \"../model/user-timezone.dto\";\n// @ts-ignore\nimport { UserTimezoneRequestDto } from \"../model/user-timezone-request.dto\";\n// @ts-ignore\nimport { UserTimezonesListErrorResponse400Dto } from \"../model/user-timezones-list-error-response400.dto\";\n// @ts-ignore\nimport { UserTimezonesSaveAllCreateErrorResponse400Dto } from \"../model/user-timezones-save-all-create-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n UserTimezonesApiServiceInterface,\n UserTimezonesListRequestParams,\n UserTimezonesSaveAllCreateRequestParams,\n} from \"./user-timezones-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserTimezonesApiService\n implements UserTimezonesApiServiceInterface\n{\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Viewset for managing user\\&#39;s timezones.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userTimezonesList(\n requestParameters?: UserTimezonesListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedUserTimezoneListDto>;\n public userTimezonesList(\n requestParameters?: UserTimezonesListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedUserTimezoneListDto>>;\n public userTimezonesList(\n requestParameters?: UserTimezonesListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedUserTimezoneListDto>>;\n public userTimezonesList(\n requestParameters?: UserTimezonesListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-timezones/`;\n return this.httpClient.request<PaginatedUserTimezoneListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Delete all previous and create new timezones for user.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userTimezonesSaveAllCreate(\n requestParameters?: UserTimezonesSaveAllCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<Array<UserTimezoneDto>>;\n public userTimezonesSaveAllCreate(\n requestParameters?: UserTimezonesSaveAllCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<Array<UserTimezoneDto>>>;\n public userTimezonesSaveAllCreate(\n requestParameters?: UserTimezonesSaveAllCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<Array<UserTimezoneDto>>>;\n public userTimezonesSaveAllCreate(\n requestParameters?: UserTimezonesSaveAllCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userTimezoneRequestDto = requestParameters?.userTimezoneRequestDto;\n if (\n userTimezoneRequestDto === null ||\n userTimezoneRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter userTimezoneRequestDto was null or undefined when calling userTimezonesSaveAllCreate.\",\n );\n }\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/user-timezones/save-all/`;\n return this.httpClient.request<Array<UserTimezoneDto>>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userTimezoneRequestDto,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedUserListDto } from \"../model/paginated-user-list.dto\";\n// @ts-ignore\nimport { UserDto } from \"../model/user.dto\";\n// @ts-ignore\nimport { UserRequestDto } from \"../model/user-request.dto\";\n// @ts-ignore\nimport { UsersCreateErrorResponse400Dto } from \"../model/users-create-error-response400.dto\";\n// @ts-ignore\nimport { UsersListErrorResponse400Dto } from \"../model/users-list-error-response400.dto\";\n// @ts-ignore\nimport { UsersRetrieveErrorResponse400Dto } from \"../model/users-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { UsersUpdateErrorResponse400Dto } from \"../model/users-update-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n UsersApiServiceInterface,\n UsersCreateRequestParams,\n UsersListRequestParams,\n UsersRetrieveRequestParams,\n UsersUpdateRequestParams,\n} from \"./users-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UsersApiService implements UsersApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for viewing accounts.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersCreate(\n requestParameters?: UsersCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserDto>;\n public usersCreate(\n requestParameters?: UsersCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserDto>>;\n public usersCreate(\n requestParameters?: UsersCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserDto>>;\n public usersCreate(\n requestParameters?: UsersCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userRequestDto = requestParameters?.userRequestDto;\n if (userRequestDto === null || userRequestDto === undefined) {\n throw new Error(\n \"Required parameter userRequestDto was null or undefined when calling usersCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/users/`;\n return this.httpClient.request<UserDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing accounts.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersList(\n requestParameters?: UsersListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedUserListDto>;\n public usersList(\n requestParameters?: UsersListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedUserListDto>>;\n public usersList(\n requestParameters?: UsersListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedUserListDto>>;\n public usersList(\n requestParameters?: UsersListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const branch = requestParameters?.branch;\n const branchIn = requestParameters?.branchIn;\n const department = requestParameters?.department;\n const departmentIn = requestParameters?.departmentIn;\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n const status = requestParameters?.status;\n const statusIn = requestParameters?.statusIn;\n const superviseesIdIn = requestParameters?.superviseesIdIn;\n const supervisorsIdIn = requestParameters?.supervisorsIdIn;\n const workType = requestParameters?.workType;\n const workTypeIn = requestParameters?.workTypeIn;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (branch !== undefined && branch !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>branch,\n \"branch\",\n );\n }\n if (branchIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...branchIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"branch__in\",\n );\n }\n if (department !== undefined && department !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>department,\n \"department\",\n );\n }\n if (departmentIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...departmentIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"department__in\",\n );\n }\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n if (status !== undefined && status !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>status,\n \"status\",\n );\n }\n if (statusIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...statusIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"status__in\",\n );\n }\n if (superviseesIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...superviseesIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"supervisees__id__in\",\n );\n }\n if (supervisorsIdIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...supervisorsIdIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"supervisors__id__in\",\n );\n }\n if (workType !== undefined && workType !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>workType,\n \"work_type\",\n );\n }\n if (workTypeIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...workTypeIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"work_type__in\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/users/`;\n return this.httpClient.request<PaginatedUserListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing accounts.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersRetrieve(\n requestParameters?: UsersRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserDto>;\n public usersRetrieve(\n requestParameters?: UsersRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserDto>>;\n public usersRetrieve(\n requestParameters?: UsersRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserDto>>;\n public usersRetrieve(\n requestParameters?: UsersRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling usersRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/users/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<UserDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing accounts.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersUpdate(\n requestParameters?: UsersUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserDto>;\n public usersUpdate(\n requestParameters?: UsersUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserDto>>;\n public usersUpdate(\n requestParameters?: UsersUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserDto>>;\n public usersUpdate(\n requestParameters?: UsersUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling usersUpdate.\",\n );\n }\n const userRequestDto = requestParameters?.userRequestDto;\n if (userRequestDto === null || userRequestDto === undefined) {\n throw new Error(\n \"Required parameter userRequestDto was null or undefined when calling usersUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/users/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<UserDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedSimpleVendorListDto } from \"../model/paginated-simple-vendor-list.dto\";\n// @ts-ignore\nimport { SimpleVendorDto } from \"../model/simple-vendor.dto\";\n// @ts-ignore\nimport { SimpleVendorRequestDto } from \"../model/simple-vendor-request.dto\";\n// @ts-ignore\nimport { VendorsCreateErrorResponse400Dto } from \"../model/vendors-create-error-response400.dto\";\n// @ts-ignore\nimport { VendorsDestroyErrorResponse400Dto } from \"../model/vendors-destroy-error-response400.dto\";\n// @ts-ignore\nimport { VendorsListErrorResponse400Dto } from \"../model/vendors-list-error-response400.dto\";\n// @ts-ignore\nimport { VendorsRetrieveErrorResponse400Dto } from \"../model/vendors-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { VendorsUpdateErrorResponse400Dto } from \"../model/vendors-update-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n VendorsApiServiceInterface,\n VendorsCreateRequestParams,\n VendorsDestroyRequestParams,\n VendorsListRequestParams,\n VendorsRetrieveRequestParams,\n VendorsUpdateRequestParams,\n} from \"./vendors-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class VendorsApiService implements VendorsApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for viewing vendors.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public vendorsCreate(\n requestParameters?: VendorsCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SimpleVendorDto>;\n public vendorsCreate(\n requestParameters?: VendorsCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SimpleVendorDto>>;\n public vendorsCreate(\n requestParameters?: VendorsCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SimpleVendorDto>>;\n public vendorsCreate(\n requestParameters?: VendorsCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const simpleVendorRequestDto = requestParameters?.simpleVendorRequestDto;\n if (\n simpleVendorRequestDto === null ||\n simpleVendorRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter simpleVendorRequestDto was null or undefined when calling vendorsCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/vendors/`;\n return this.httpClient.request<SimpleVendorDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: simpleVendorRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing vendors.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public vendorsDestroy(\n requestParameters?: VendorsDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public vendorsDestroy(\n requestParameters?: VendorsDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public vendorsDestroy(\n requestParameters?: VendorsDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public vendorsDestroy(\n requestParameters?: VendorsDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling vendorsDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/vendors/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing vendors.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public vendorsList(\n requestParameters?: VendorsListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedSimpleVendorListDto>;\n public vendorsList(\n requestParameters?: VendorsListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedSimpleVendorListDto>>;\n public vendorsList(\n requestParameters?: VendorsListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedSimpleVendorListDto>>;\n public vendorsList(\n requestParameters?: VendorsListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/vendors/`;\n return this.httpClient.request<PaginatedSimpleVendorListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing vendors.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public vendorsRetrieve(\n requestParameters?: VendorsRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SimpleVendorDto>;\n public vendorsRetrieve(\n requestParameters?: VendorsRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SimpleVendorDto>>;\n public vendorsRetrieve(\n requestParameters?: VendorsRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SimpleVendorDto>>;\n public vendorsRetrieve(\n requestParameters?: VendorsRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling vendorsRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/vendors/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<SimpleVendorDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for viewing vendors.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public vendorsUpdate(\n requestParameters?: VendorsUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SimpleVendorDto>;\n public vendorsUpdate(\n requestParameters?: VendorsUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SimpleVendorDto>>;\n public vendorsUpdate(\n requestParameters?: VendorsUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SimpleVendorDto>>;\n public vendorsUpdate(\n requestParameters?: VendorsUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling vendorsUpdate.\",\n );\n }\n const simpleVendorRequestDto = requestParameters?.simpleVendorRequestDto;\n if (\n simpleVendorRequestDto === null ||\n simpleVendorRequestDto === undefined\n ) {\n throw new Error(\n \"Required parameter simpleVendorRequestDto was null or undefined when calling vendorsUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/vendors/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<SimpleVendorDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: simpleVendorRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { WhoAmIDto } from \"../model/who-am-i.dto\";\n// @ts-ignore\nimport { WhoAmIRetrieveErrorResponse400Dto } from \"../model/who-am-i-retrieve-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { WhoAmIApiServiceInterface } from \"./who-am-i-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class WhoAmIApiService implements WhoAmIApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * View to get information about user themselves.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public whoAmIRetrieve(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<WhoAmIDto>;\n public whoAmIRetrieve(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<WhoAmIDto>>;\n public whoAmIRetrieve(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<WhoAmIDto>>;\n public whoAmIRetrieve(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/who-am-i/`;\n return this.httpClient.request<WhoAmIDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { ErrorResponse401Dto } from \"../model/error-response401.dto\";\n// @ts-ignore\nimport { ErrorResponse403Dto } from \"../model/error-response403.dto\";\n// @ts-ignore\nimport { ErrorResponse404Dto } from \"../model/error-response404.dto\";\n// @ts-ignore\nimport { ErrorResponse405Dto } from \"../model/error-response405.dto\";\n// @ts-ignore\nimport { ErrorResponse406Dto } from \"../model/error-response406.dto\";\n// @ts-ignore\nimport { ErrorResponse415Dto } from \"../model/error-response415.dto\";\n// @ts-ignore\nimport { ErrorResponse500Dto } from \"../model/error-response500.dto\";\n// @ts-ignore\nimport { PaginatedWorkTypeListDto } from \"../model/paginated-work-type-list.dto\";\n// @ts-ignore\nimport { WorkTypeDto } from \"../model/work-type.dto\";\n// @ts-ignore\nimport { WorkTypeRequestDto } from \"../model/work-type-request.dto\";\n// @ts-ignore\nimport { WorkTypesCreateErrorResponse400Dto } from \"../model/work-types-create-error-response400.dto\";\n// @ts-ignore\nimport { WorkTypesDestroyErrorResponse400Dto } from \"../model/work-types-destroy-error-response400.dto\";\n// @ts-ignore\nimport { WorkTypesListErrorResponse400Dto } from \"../model/work-types-list-error-response400.dto\";\n// @ts-ignore\nimport { WorkTypesRetrieveErrorResponse400Dto } from \"../model/work-types-retrieve-error-response400.dto\";\n// @ts-ignore\nimport { WorkTypesUpdateErrorResponse400Dto } from \"../model/work-types-update-error-response400.dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport {\n WorkTypesApiServiceInterface,\n WorkTypesCreateRequestParams,\n WorkTypesDestroyRequestParams,\n WorkTypesListRequestParams,\n WorkTypesRetrieveRequestParams,\n WorkTypesUpdateRequestParams,\n} from \"./work-types-api.serviceInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class WorkTypesApiService implements WorkTypesApiServiceInterface {\n protected basePath = \"\";\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n public encoder: HttpParameterCodec;\n\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration: Configuration,\n ) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n // @ts-ignore\n private addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n ): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n ): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(\n key,\n (value as Date).toISOString().substring(0, 10),\n );\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(\n (k) =>\n (httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n key != null ? `${key}.${k}` : k,\n )),\n );\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * ViewSet for WorkType model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public workTypesCreate(\n requestParameters?: WorkTypesCreateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<WorkTypeDto>;\n public workTypesCreate(\n requestParameters?: WorkTypesCreateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<WorkTypeDto>>;\n public workTypesCreate(\n requestParameters?: WorkTypesCreateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<WorkTypeDto>>;\n public workTypesCreate(\n requestParameters?: WorkTypesCreateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const workTypeRequestDto = requestParameters?.workTypeRequestDto;\n if (workTypeRequestDto === null || workTypeRequestDto === undefined) {\n throw new Error(\n \"Required parameter workTypeRequestDto was null or undefined when calling workTypesCreate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/work-types/`;\n return this.httpClient.request<WorkTypeDto>(\n \"post\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: workTypeRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for WorkType model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public workTypesDestroy(\n requestParameters?: WorkTypesDestroyRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public workTypesDestroy(\n requestParameters?: WorkTypesDestroyRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public workTypesDestroy(\n requestParameters?: WorkTypesDestroyRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public workTypesDestroy(\n requestParameters?: WorkTypesDestroyRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling workTypesDestroy.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/work-types/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<any>(\n \"delete\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for WorkType model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public workTypesList(\n requestParameters?: WorkTypesListRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PaginatedWorkTypeListDto>;\n public workTypesList(\n requestParameters?: WorkTypesListRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PaginatedWorkTypeListDto>>;\n public workTypesList(\n requestParameters?: WorkTypesListRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PaginatedWorkTypeListDto>>;\n public workTypesList(\n requestParameters?: WorkTypesListRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const department = requestParameters?.department;\n const departmentIn = requestParameters?.departmentIn;\n const id = requestParameters?.id;\n const idIn = requestParameters?.idIn;\n const limit = requestParameters?.limit;\n const offset = requestParameters?.offset;\n const ordering = requestParameters?.ordering;\n const parent = requestParameters?.parent;\n const parentIn = requestParameters?.parentIn;\n const search = requestParameters?.search;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n if (department !== undefined && department !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>department,\n \"department\",\n );\n }\n if (departmentIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...departmentIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"department__in\",\n );\n }\n if (id !== undefined && id !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>id,\n \"id\",\n );\n }\n if (idIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...idIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"id__in\",\n );\n }\n if (limit !== undefined && limit !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>limit,\n \"limit\",\n );\n }\n if (offset !== undefined && offset !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>offset,\n \"offset\",\n );\n }\n if (ordering !== undefined && ordering !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>ordering,\n \"ordering\",\n );\n }\n if (parent !== undefined && parent !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>parent,\n \"parent\",\n );\n }\n if (parentIn) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n [...parentIn].join(COLLECTION_FORMATS[\"csv\"]),\n \"parent__in\",\n );\n }\n if (search !== undefined && search !== null) {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>search,\n \"search\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/work-types/`;\n return this.httpClient.request<PaginatedWorkTypeListDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for WorkType model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public workTypesRetrieve(\n requestParameters?: WorkTypesRetrieveRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<WorkTypeDto>;\n public workTypesRetrieve(\n requestParameters?: WorkTypesRetrieveRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<WorkTypeDto>>;\n public workTypesRetrieve(\n requestParameters?: WorkTypesRetrieveRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<WorkTypeDto>>;\n public workTypesRetrieve(\n requestParameters?: WorkTypesRetrieveRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling workTypesRetrieve.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/work-types/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<WorkTypeDto>(\n \"get\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * ViewSet for WorkType model.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public workTypesUpdate(\n requestParameters?: WorkTypesUpdateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<WorkTypeDto>;\n public workTypesUpdate(\n requestParameters?: WorkTypesUpdateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<WorkTypeDto>>;\n public workTypesUpdate(\n requestParameters?: WorkTypesUpdateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<WorkTypeDto>>;\n public workTypesUpdate(\n requestParameters?: WorkTypesUpdateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"application/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling workTypesUpdate.\",\n );\n }\n const workTypeRequestDto = requestParameters?.workTypeRequestDto;\n if (workTypeRequestDto === null || workTypeRequestDto === undefined) {\n throw new Error(\n \"Required parameter workTypeRequestDto was null or undefined when calling workTypesUpdate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarCredential: string | undefined;\n // authentication (cookieAuth) required\n localVarCredential = this.configuration.lookupCredential(\"cookieAuth\");\n if (localVarCredential) {\n }\n\n // authentication (jwtAuth) required\n localVarCredential = this.configuration.lookupCredential(\"jwtAuth\");\n if (localVarCredential) {\n localVarHeaders = localVarHeaders.set(\n \"Authorization\",\n \"Bearer \" + localVarCredential,\n );\n }\n\n let localVarHttpHeaderAcceptSelected: string | undefined =\n options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\"application/json\"];\n localVarHttpHeaderAcceptSelected =\n this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n let localVarHttpContext: HttpContext | undefined =\n options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined =\n options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"application/x-www-form-urlencoded\",\n \"multipart/form-data\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/v1/work-types/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: undefined })}/`;\n return this.httpClient.request<WorkTypeDto>(\n \"put\",\n `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: workTypeRequestDto,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","export * from \"./branch-periods-api.service\";\nimport { BranchPeriodsApiService } from \"./branch-periods-api.service\";\nexport * from \"./branch-periods-api.serviceInterface\";\nexport * from \"./branches-api.service\";\nimport { BranchesApiService } from \"./branches-api.service\";\nexport * from \"./branches-api.serviceInterface\";\nexport * from \"./departments-api.service\";\nimport { DepartmentsApiService } from \"./departments-api.service\";\nexport * from \"./departments-api.serviceInterface\";\nexport * from \"./dismissal-reasons-api.service\";\nimport { DismissalReasonsApiService } from \"./dismissal-reasons-api.service\";\nexport * from \"./dismissal-reasons-api.serviceInterface\";\nexport * from \"./jira-client-api.service\";\nimport { JiraClientApiService } from \"./jira-client-api.service\";\nexport * from \"./jira-client-api.serviceInterface\";\nexport * from \"./jira-instances-api.service\";\nimport { JiraInstancesApiService } from \"./jira-instances-api.service\";\nexport * from \"./jira-instances-api.serviceInterface\";\nexport * from \"./locations-api.service\";\nimport { LocationsApiService } from \"./locations-api.service\";\nexport * from \"./locations-api.serviceInterface\";\nexport * from \"./permission-data-api.service\";\nimport { PermissionDataApiService } from \"./permission-data-api.service\";\nexport * from \"./permission-data-api.serviceInterface\";\nexport * from \"./profile-api.service\";\nimport { ProfileApiService } from \"./profile-api.service\";\nexport * from \"./profile-api.serviceInterface\";\nexport * from \"./projects-api.service\";\nimport { ProjectsApiService } from \"./projects-api.service\";\nexport * from \"./projects-api.serviceInterface\";\nexport * from \"./roles-api.service\";\nimport { RolesApiService } from \"./roles-api.service\";\nexport * from \"./roles-api.serviceInterface\";\nexport * from \"./s3-api.service\";\nimport { S3ApiService } from \"./s3-api.service\";\nexport * from \"./s3-api.serviceInterface\";\nexport * from \"./search-periods-api.service\";\nimport { SearchPeriodsApiService } from \"./search-periods-api.service\";\nexport * from \"./search-periods-api.serviceInterface\";\nexport * from \"./sso-api.service\";\nimport { SsoApiService } from \"./sso-api.service\";\nexport * from \"./sso-api.serviceInterface\";\nexport * from \"./token-api.service\";\nimport { TokenApiService } from \"./token-api.service\";\nexport * from \"./token-api.serviceInterface\";\nexport * from \"./user-capacities-api.service\";\nimport { UserCapacitiesApiService } from \"./user-capacities-api.service\";\nexport * from \"./user-capacities-api.serviceInterface\";\nexport * from \"./user-logins-api.service\";\nimport { UserLoginsApiService } from \"./user-logins-api.service\";\nexport * from \"./user-logins-api.serviceInterface\";\nexport * from \"./user-periods-api.service\";\nimport { UserPeriodsApiService } from \"./user-periods-api.service\";\nexport * from \"./user-periods-api.serviceInterface\";\nexport * from \"./user-timezone-setting-api.service\";\nimport { UserTimezoneSettingApiService } from \"./user-timezone-setting-api.service\";\nexport * from \"./user-timezone-setting-api.serviceInterface\";\nexport * from \"./user-timezones-api.service\";\nimport { UserTimezonesApiService } from \"./user-timezones-api.service\";\nexport * from \"./user-timezones-api.serviceInterface\";\nexport * from \"./users-api.service\";\nimport { UsersApiService } from \"./users-api.service\";\nexport * from \"./users-api.serviceInterface\";\nexport * from \"./vendors-api.service\";\nimport { VendorsApiService } from \"./vendors-api.service\";\nexport * from \"./vendors-api.serviceInterface\";\nexport * from \"./who-am-i-api.service\";\nimport { WhoAmIApiService } from \"./who-am-i-api.service\";\nexport * from \"./who-am-i-api.serviceInterface\";\nexport * from \"./work-types-api.service\";\nimport { WorkTypesApiService } from \"./work-types-api.service\";\nexport * from \"./work-types-api.serviceInterface\";\nexport const APIS = [\n BranchPeriodsApiService,\n BranchesApiService,\n DepartmentsApiService,\n DismissalReasonsApiService,\n JiraClientApiService,\n JiraInstancesApiService,\n LocationsApiService,\n PermissionDataApiService,\n ProfileApiService,\n ProjectsApiService,\n RolesApiService,\n S3ApiService,\n SearchPeriodsApiService,\n SsoApiService,\n TokenApiService,\n UserCapacitiesApiService,\n UserLoginsApiService,\n UserPeriodsApiService,\n UserTimezoneSettingApiService,\n UserTimezonesApiService,\n UsersApiService,\n VendorsApiService,\n WhoAmIApiService,\n WorkTypesApiService,\n];\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `holiday` - Holiday * `workday` - Workday\n */\nexport enum BranchPeriodTypeEnumDto {\n Holiday = \"holiday\",\n Workday = \"workday\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreateBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: BranchPeriodsCreateBranchErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: BranchPeriodsCreateBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreateBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum BranchPeriodsCreateBranchErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreateDescriptionErrorComponentDto {\n /**\n * * `description` - description\n */\n attr: BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum {\n Description = \"description\",\n}\nexport enum BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: BranchPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: BranchPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum BranchPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreatePeriodEndErrorComponentDto {\n /**\n * * `period.end` - period.end\n */\n attr: BranchPeriodsCreatePeriodEndErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid * `required` - required\n */\n code: BranchPeriodsCreatePeriodEndErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreatePeriodEndErrorComponentDtoAttrEnum {\n PeriodEnd = \"period.end\",\n}\nexport enum BranchPeriodsCreatePeriodEndErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDto {\n /**\n * * `period.non_field_errors` - period.non_field_errors\n */\n attr: BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum {\n PeriodNonFieldErrors = \"period.non_field_errors\",\n}\nexport enum BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreatePeriodStartErrorComponentDto {\n /**\n * * `period.start` - period.start\n */\n attr: BranchPeriodsCreatePeriodStartErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid * `required` - required\n */\n code: BranchPeriodsCreatePeriodStartErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreatePeriodStartErrorComponentDtoAttrEnum {\n PeriodStart = \"period.start\",\n}\nexport enum BranchPeriodsCreatePeriodStartErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreateTitleErrorComponentDto {\n /**\n * * `title` - title\n */\n attr: BranchPeriodsCreateTitleErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchPeriodsCreateTitleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreateTitleErrorComponentDtoAttrEnum {\n Title = \"title\",\n}\nexport enum BranchPeriodsCreateTitleErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsCreateTypeErrorComponentDto {\n /**\n * * `type` - type\n */\n attr: BranchPeriodsCreateTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: BranchPeriodsCreateTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsCreateTypeErrorComponentDtoAttrEnum {\n Type = \"type\",\n}\nexport enum BranchPeriodsCreateTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdateBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: BranchPeriodsUpdateBranchErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: BranchPeriodsUpdateBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdateBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum BranchPeriodsUpdateBranchErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdateDescriptionErrorComponentDto {\n /**\n * * `description` - description\n */\n attr: BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum {\n Description = \"description\",\n}\nexport enum BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdatePeriodEndErrorComponentDto {\n /**\n * * `period.end` - period.end\n */\n attr: BranchPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid * `required` - required\n */\n code: BranchPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum {\n PeriodEnd = \"period.end\",\n}\nexport enum BranchPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDto {\n /**\n * * `period.non_field_errors` - period.non_field_errors\n */\n attr: BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum {\n PeriodNonFieldErrors = \"period.non_field_errors\",\n}\nexport enum BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdatePeriodStartErrorComponentDto {\n /**\n * * `period.start` - period.start\n */\n attr: BranchPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid * `required` - required\n */\n code: BranchPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum {\n PeriodStart = \"period.start\",\n}\nexport enum BranchPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdateTitleErrorComponentDto {\n /**\n * * `title` - title\n */\n attr: BranchPeriodsUpdateTitleErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchPeriodsUpdateTitleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdateTitleErrorComponentDtoAttrEnum {\n Title = \"title\",\n}\nexport enum BranchPeriodsUpdateTitleErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchPeriodsUpdateTypeErrorComponentDto {\n /**\n * * `type` - type\n */\n attr: BranchPeriodsUpdateTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: BranchPeriodsUpdateTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchPeriodsUpdateTypeErrorComponentDtoAttrEnum {\n Type = \"type\",\n}\nexport enum BranchPeriodsUpdateTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for representing `Branch`.\n */\nexport interface BranchRequestDto {\n name: string;\n code: string;\n timezone: string;\n hr_email: string;\n is_vacation_file_required: boolean;\n is_oversea: boolean;\n vacation_period: number;\n vacation_days_count: number;\n address1: string;\n address2: string;\n country: string;\n state: string;\n postal_code: string;\n ceo?: number | null;\n icon?: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Branch model. Contains less information and also the number of users.\n */\nexport interface BranchUserStatsDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n /**\n * Count of users per branch.\n */\n readonly users_count?: number;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateAddress1ErrorComponentDto {\n /**\n * * `address1` - address1\n */\n attr: BranchesCreateAddress1ErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateAddress1ErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateAddress1ErrorComponentDtoAttrEnum {\n Address1 = \"address1\",\n}\nexport enum BranchesCreateAddress1ErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateAddress2ErrorComponentDto {\n /**\n * * `address2` - address2\n */\n attr: BranchesCreateAddress2ErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateAddress2ErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateAddress2ErrorComponentDtoAttrEnum {\n Address2 = \"address2\",\n}\nexport enum BranchesCreateAddress2ErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateCeoErrorComponentDto {\n /**\n * * `ceo` - ceo\n */\n attr: BranchesCreateCeoErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: BranchesCreateCeoErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateCeoErrorComponentDtoAttrEnum {\n Ceo = \"ceo\",\n}\nexport enum BranchesCreateCeoErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateCodeErrorComponentDto {\n /**\n * * `code` - code\n */\n attr: BranchesCreateCodeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: BranchesCreateCodeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateCodeErrorComponentDtoAttrEnum {\n Code = \"code\",\n}\nexport enum BranchesCreateCodeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateCountryErrorComponentDto {\n /**\n * * `country` - country\n */\n attr: BranchesCreateCountryErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateCountryErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateCountryErrorComponentDtoAttrEnum {\n Country = \"country\",\n}\nexport enum BranchesCreateCountryErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateHrEmailErrorComponentDto {\n /**\n * * `hr_email` - hr_email\n */\n attr: BranchesCreateHrEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateHrEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateHrEmailErrorComponentDtoAttrEnum {\n HrEmail = \"hr_email\",\n}\nexport enum BranchesCreateHrEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateIconErrorComponentDto {\n /**\n * * `icon` - icon\n */\n attr: BranchesCreateIconErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateIconErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateIconErrorComponentDtoAttrEnum {\n Icon = \"icon\",\n}\nexport enum BranchesCreateIconErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateIsOverseaErrorComponentDto {\n /**\n * * `is_oversea` - is_oversea\n */\n attr: BranchesCreateIsOverseaErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: BranchesCreateIsOverseaErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateIsOverseaErrorComponentDtoAttrEnum {\n IsOversea = \"is_oversea\",\n}\nexport enum BranchesCreateIsOverseaErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateIsVacationFileRequiredErrorComponentDto {\n /**\n * * `is_vacation_file_required` - is_vacation_file_required\n */\n attr: BranchesCreateIsVacationFileRequiredErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: BranchesCreateIsVacationFileRequiredErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateIsVacationFileRequiredErrorComponentDtoAttrEnum {\n IsVacationFileRequired = \"is_vacation_file_required\",\n}\nexport enum BranchesCreateIsVacationFileRequiredErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: BranchesCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: BranchesCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum BranchesCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: BranchesCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: BranchesCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum BranchesCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreatePostalCodeErrorComponentDto {\n /**\n * * `postal_code` - postal_code\n */\n attr: BranchesCreatePostalCodeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreatePostalCodeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreatePostalCodeErrorComponentDtoAttrEnum {\n PostalCode = \"postal_code\",\n}\nexport enum BranchesCreatePostalCodeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateStateErrorComponentDto {\n /**\n * * `state` - state\n */\n attr: BranchesCreateStateErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateStateErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateStateErrorComponentDtoAttrEnum {\n State = \"state\",\n}\nexport enum BranchesCreateStateErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: BranchesCreateTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesCreateTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum BranchesCreateTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateVacationDaysCountErrorComponentDto {\n /**\n * * `vacation_days_count` - vacation_days_count\n */\n attr: BranchesCreateVacationDaysCountErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required\n */\n code: BranchesCreateVacationDaysCountErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateVacationDaysCountErrorComponentDtoAttrEnum {\n VacationDaysCount = \"vacation_days_count\",\n}\nexport enum BranchesCreateVacationDaysCountErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n MaxValue = \"max_value\",\n MinValue = \"min_value\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesCreateVacationPeriodErrorComponentDto {\n /**\n * * `vacation_period` - vacation_period\n */\n attr: BranchesCreateVacationPeriodErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required\n */\n code: BranchesCreateVacationPeriodErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesCreateVacationPeriodErrorComponentDtoAttrEnum {\n VacationPeriod = \"vacation_period\",\n}\nexport enum BranchesCreateVacationPeriodErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n MaxValue = \"max_value\",\n MinValue = \"min_value\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: BranchesListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: BranchesListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum BranchesListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: BranchesListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: BranchesListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum BranchesListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateAddress1ErrorComponentDto {\n /**\n * * `address1` - address1\n */\n attr: BranchesUpdateAddress1ErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateAddress1ErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateAddress1ErrorComponentDtoAttrEnum {\n Address1 = \"address1\",\n}\nexport enum BranchesUpdateAddress1ErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateAddress2ErrorComponentDto {\n /**\n * * `address2` - address2\n */\n attr: BranchesUpdateAddress2ErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateAddress2ErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateAddress2ErrorComponentDtoAttrEnum {\n Address2 = \"address2\",\n}\nexport enum BranchesUpdateAddress2ErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateCeoErrorComponentDto {\n /**\n * * `ceo` - ceo\n */\n attr: BranchesUpdateCeoErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: BranchesUpdateCeoErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateCeoErrorComponentDtoAttrEnum {\n Ceo = \"ceo\",\n}\nexport enum BranchesUpdateCeoErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateCodeErrorComponentDto {\n /**\n * * `code` - code\n */\n attr: BranchesUpdateCodeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: BranchesUpdateCodeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateCodeErrorComponentDtoAttrEnum {\n Code = \"code\",\n}\nexport enum BranchesUpdateCodeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateCountryErrorComponentDto {\n /**\n * * `country` - country\n */\n attr: BranchesUpdateCountryErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateCountryErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateCountryErrorComponentDtoAttrEnum {\n Country = \"country\",\n}\nexport enum BranchesUpdateCountryErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateHrEmailErrorComponentDto {\n /**\n * * `hr_email` - hr_email\n */\n attr: BranchesUpdateHrEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateHrEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateHrEmailErrorComponentDtoAttrEnum {\n HrEmail = \"hr_email\",\n}\nexport enum BranchesUpdateHrEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateIconErrorComponentDto {\n /**\n * * `icon` - icon\n */\n attr: BranchesUpdateIconErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateIconErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateIconErrorComponentDtoAttrEnum {\n Icon = \"icon\",\n}\nexport enum BranchesUpdateIconErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateIsOverseaErrorComponentDto {\n /**\n * * `is_oversea` - is_oversea\n */\n attr: BranchesUpdateIsOverseaErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: BranchesUpdateIsOverseaErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateIsOverseaErrorComponentDtoAttrEnum {\n IsOversea = \"is_oversea\",\n}\nexport enum BranchesUpdateIsOverseaErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateIsVacationFileRequiredErrorComponentDto {\n /**\n * * `is_vacation_file_required` - is_vacation_file_required\n */\n attr: BranchesUpdateIsVacationFileRequiredErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: BranchesUpdateIsVacationFileRequiredErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateIsVacationFileRequiredErrorComponentDtoAttrEnum {\n IsVacationFileRequired = \"is_vacation_file_required\",\n}\nexport enum BranchesUpdateIsVacationFileRequiredErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: BranchesUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: BranchesUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum BranchesUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: BranchesUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: BranchesUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum BranchesUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdatePostalCodeErrorComponentDto {\n /**\n * * `postal_code` - postal_code\n */\n attr: BranchesUpdatePostalCodeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdatePostalCodeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdatePostalCodeErrorComponentDtoAttrEnum {\n PostalCode = \"postal_code\",\n}\nexport enum BranchesUpdatePostalCodeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateStateErrorComponentDto {\n /**\n * * `state` - state\n */\n attr: BranchesUpdateStateErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateStateErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateStateErrorComponentDtoAttrEnum {\n State = \"state\",\n}\nexport enum BranchesUpdateStateErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: BranchesUpdateTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: BranchesUpdateTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum BranchesUpdateTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateVacationDaysCountErrorComponentDto {\n /**\n * * `vacation_days_count` - vacation_days_count\n */\n attr: BranchesUpdateVacationDaysCountErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required\n */\n code: BranchesUpdateVacationDaysCountErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateVacationDaysCountErrorComponentDtoAttrEnum {\n VacationDaysCount = \"vacation_days_count\",\n}\nexport enum BranchesUpdateVacationDaysCountErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n MaxValue = \"max_value\",\n MinValue = \"min_value\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUpdateVacationPeriodErrorComponentDto {\n /**\n * * `vacation_period` - vacation_period\n */\n attr: BranchesUpdateVacationPeriodErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required\n */\n code: BranchesUpdateVacationPeriodErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUpdateVacationPeriodErrorComponentDtoAttrEnum {\n VacationPeriod = \"vacation_period\",\n}\nexport enum BranchesUpdateVacationPeriodErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n MaxValue = \"max_value\",\n MinValue = \"min_value\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUsersStatsListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: BranchesUsersStatsListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: BranchesUsersStatsListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUsersStatsListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum BranchesUsersStatsListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUsersStatsListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: BranchesUsersStatsListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: BranchesUsersStatsListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUsersStatsListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum BranchesUsersStatsListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface BranchesUsersStatsListUsersSearchErrorComponentDto {\n /**\n * * `users__search` - users__search\n */\n attr: BranchesUsersStatsListUsersSearchErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: BranchesUsersStatsListUsersSearchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum BranchesUsersStatsListUsersSearchErrorComponentDtoAttrEnum {\n UsersSearch = \"users__search\",\n}\nexport enum BranchesUsersStatsListUsersSearchErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `client_error` - Client Error\n */\nexport enum ClientErrorEnumDto {\n ClientError = \"client_error\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `branch-icon` - branch-icon * `location-icon` - location-icon * `user-avatar` - user-avatar * `user-period-file` - user-period-file * `client-project-note-files` - client-project-note-files\n */\nexport enum ConfigEnumDto {\n BranchIcon = \"branch-icon\",\n LocationIcon = \"location-icon\",\n UserAvatar = \"user-avatar\",\n UserPeriodFile = \"user-period-file\",\n ClientProjectNoteFiles = \"client-project-note-files\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer used to create project in Jira.\n */\nexport interface CreateJiraProjectDto {\n instance: number;\n project_name: string;\n lead_email: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer used to create project in Jira.\n */\nexport interface CreateJiraProjectRequestDto {\n instance: number;\n project_name: string;\n lead_email: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for working with Date ranges.\n */\nexport interface DateRangeFieldDto {\n start: string | null;\n end: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for working with Date ranges.\n */\nexport interface DateRangeFieldRequestDto {\n start: string | null;\n end: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Representation of debug login request.\n */\nexport interface DebugLoginRequestDto {\n email: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Department model. Contains all information about one and its work types for DepartmentViewSet.\n */\nexport interface DepartmentRequestDto {\n name: string;\n utilization: boolean;\n work_types: Array<number>;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: DepartmentsCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: DepartmentsCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum DepartmentsCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: DepartmentsCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: DepartmentsCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum DepartmentsCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsCreateUtilizationErrorComponentDto {\n /**\n * * `utilization` - utilization\n */\n attr: DepartmentsCreateUtilizationErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: DepartmentsCreateUtilizationErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsCreateUtilizationErrorComponentDtoAttrEnum {\n Utilization = \"utilization\",\n}\nexport enum DepartmentsCreateUtilizationErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsCreateWorkTypesErrorComponentDto {\n /**\n * * `work_types` - work_types\n */\n attr: DepartmentsCreateWorkTypesErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: DepartmentsCreateWorkTypesErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsCreateWorkTypesErrorComponentDtoAttrEnum {\n WorkTypes = \"work_types\",\n}\nexport enum DepartmentsCreateWorkTypesErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: DepartmentsListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: DepartmentsListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum DepartmentsListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: DepartmentsListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: DepartmentsListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum DepartmentsListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsListNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: DepartmentsListNameErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: DepartmentsListNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsListNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum DepartmentsListNameErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsListNameInErrorComponentDto {\n /**\n * * `name__in` - name__in\n */\n attr: DepartmentsListNameInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: DepartmentsListNameInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsListNameInErrorComponentDtoAttrEnum {\n NameIn = \"name__in\",\n}\nexport enum DepartmentsListNameInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsListWorkTypesIdInErrorComponentDto {\n /**\n * * `work_types__id__in` - work_types__id__in\n */\n attr: DepartmentsListWorkTypesIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: DepartmentsListWorkTypesIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsListWorkTypesIdInErrorComponentDtoAttrEnum {\n WorkTypesIdIn = \"work_types__id__in\",\n}\nexport enum DepartmentsListWorkTypesIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: DepartmentsUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: DepartmentsUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum DepartmentsUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: DepartmentsUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: DepartmentsUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum DepartmentsUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsUpdateUtilizationErrorComponentDto {\n /**\n * * `utilization` - utilization\n */\n attr: DepartmentsUpdateUtilizationErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: DepartmentsUpdateUtilizationErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsUpdateUtilizationErrorComponentDtoAttrEnum {\n Utilization = \"utilization\",\n}\nexport enum DepartmentsUpdateUtilizationErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DepartmentsUpdateWorkTypesErrorComponentDto {\n /**\n * * `work_types` - work_types\n */\n attr: DepartmentsUpdateWorkTypesErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: DepartmentsUpdateWorkTypesErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DepartmentsUpdateWorkTypesErrorComponentDtoAttrEnum {\n WorkTypes = \"work_types\",\n}\nexport enum DepartmentsUpdateWorkTypesErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: DismissalReasonsCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: DismissalReasonsCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum DismissalReasonsCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: DismissalReasonsCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: DismissalReasonsCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum DismissalReasonsCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsCreateTypeErrorComponentDto {\n /**\n * * `type` - type\n */\n attr: DismissalReasonsCreateTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: DismissalReasonsCreateTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsCreateTypeErrorComponentDtoAttrEnum {\n Type = \"type\",\n}\nexport enum DismissalReasonsCreateTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: DismissalReasonsListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: DismissalReasonsListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum DismissalReasonsListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: DismissalReasonsListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: DismissalReasonsListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum DismissalReasonsListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsListNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: DismissalReasonsListNameErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: DismissalReasonsListNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsListNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum DismissalReasonsListNameErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsListNameInErrorComponentDto {\n /**\n * * `name__in` - name__in\n */\n attr: DismissalReasonsListNameInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: DismissalReasonsListNameInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsListNameInErrorComponentDtoAttrEnum {\n NameIn = \"name__in\",\n}\nexport enum DismissalReasonsListNameInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsListTypeErrorComponentDto {\n /**\n * * `type` - type\n */\n attr: DismissalReasonsListTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: DismissalReasonsListTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsListTypeErrorComponentDtoAttrEnum {\n Type = \"type\",\n}\nexport enum DismissalReasonsListTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsListTypeInErrorComponentDto {\n /**\n * * `type__in` - type__in\n */\n attr: DismissalReasonsListTypeInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: DismissalReasonsListTypeInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsListTypeInErrorComponentDtoAttrEnum {\n TypeIn = \"type__in\",\n}\nexport enum DismissalReasonsListTypeInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: DismissalReasonsUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: DismissalReasonsUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum DismissalReasonsUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface DismissalReasonsUpdateTypeErrorComponentDto {\n /**\n * * `type` - type\n */\n attr: DismissalReasonsUpdateTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: DismissalReasonsUpdateTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum DismissalReasonsUpdateTypeErrorComponentDtoAttrEnum {\n Type = \"type\",\n}\nexport enum DismissalReasonsUpdateTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `authentication_failed` - Authentication Failed * `not_authenticated` - Not Authenticated\n */\nexport enum ErrorCode401EnumDto {\n AuthenticationFailed = \"authentication_failed\",\n NotAuthenticated = \"not_authenticated\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `permission_denied` - Permission Denied\n */\nexport enum ErrorCode403EnumDto {\n PermissionDenied = \"permission_denied\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `not_found` - Not Found\n */\nexport enum ErrorCode404EnumDto {\n NotFound = \"not_found\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `method_not_allowed` - Method Not Allowed\n */\nexport enum ErrorCode405EnumDto {\n MethodNotAllowed = \"method_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `not_acceptable` - Not Acceptable\n */\nexport enum ErrorCode406EnumDto {\n NotAcceptable = \"not_acceptable\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `unsupported_media_type` - Unsupported Media Type\n */\nexport enum ErrorCode415EnumDto {\n UnsupportedMediaType = \"unsupported_media_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `error` - Error\n */\nexport enum ErrorCode500EnumDto {\n Error = \"error\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `calendar` - calendar * `people` - people\n */\nexport enum GroupEnumDto {\n Calendar = \"calendar\",\n People = \"people\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface JiraClientCreateProjectCreateInstanceErrorComponentDto {\n /**\n * * `instance` - instance\n */\n attr: JiraClientCreateProjectCreateInstanceErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: JiraClientCreateProjectCreateInstanceErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum JiraClientCreateProjectCreateInstanceErrorComponentDtoAttrEnum {\n Instance = \"instance\",\n}\nexport enum JiraClientCreateProjectCreateInstanceErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface JiraClientCreateProjectCreateLeadEmailErrorComponentDto {\n /**\n * * `lead_email` - lead_email\n */\n attr: JiraClientCreateProjectCreateLeadEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: JiraClientCreateProjectCreateLeadEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum JiraClientCreateProjectCreateLeadEmailErrorComponentDtoAttrEnum {\n LeadEmail = \"lead_email\",\n}\nexport enum JiraClientCreateProjectCreateLeadEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface JiraClientCreateProjectCreateProjectNameErrorComponentDto {\n /**\n * * `project_name` - project_name\n */\n attr: JiraClientCreateProjectCreateProjectNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: JiraClientCreateProjectCreateProjectNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum JiraClientCreateProjectCreateProjectNameErrorComponentDtoAttrEnum {\n ProjectName = \"project_name\",\n}\nexport enum JiraClientCreateProjectCreateProjectNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for JiraInstance model.\n */\nexport interface JiraInstanceDto {\n name: string;\n readonly id?: number;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Location model.\n */\nexport interface LocationDto {\n name: string;\n timezone: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n /**\n * Count of users in location\n */\n readonly users_count?: number;\n icon?: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Location model.\n */\nexport interface LocationRequestDto {\n name: string;\n timezone: string;\n icon?: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsCreateIconErrorComponentDto {\n /**\n * * `icon` - icon\n */\n attr: LocationsCreateIconErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: LocationsCreateIconErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsCreateIconErrorComponentDtoAttrEnum {\n Icon = \"icon\",\n}\nexport enum LocationsCreateIconErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: LocationsCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: LocationsCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum LocationsCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: LocationsCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `unique` - unique\n */\n code: LocationsCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum LocationsCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsCreateTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: LocationsCreateTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: LocationsCreateTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsCreateTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum LocationsCreateTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: LocationsListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: LocationsListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum LocationsListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: LocationsListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: LocationsListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum LocationsListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsListNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: LocationsListNameErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: LocationsListNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsListNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum LocationsListNameErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsListNameInErrorComponentDto {\n /**\n * * `name__in` - name__in\n */\n attr: LocationsListNameInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: LocationsListNameInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsListNameInErrorComponentDtoAttrEnum {\n NameIn = \"name__in\",\n}\nexport enum LocationsListNameInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsListTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: LocationsListTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: LocationsListTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsListTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum LocationsListTimezoneErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsListTimezoneInErrorComponentDto {\n /**\n * * `timezone__in` - timezone__in\n */\n attr: LocationsListTimezoneInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: LocationsListTimezoneInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsListTimezoneInErrorComponentDtoAttrEnum {\n TimezoneIn = \"timezone__in\",\n}\nexport enum LocationsListTimezoneInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsUpdateIconErrorComponentDto {\n /**\n * * `icon` - icon\n */\n attr: LocationsUpdateIconErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: LocationsUpdateIconErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsUpdateIconErrorComponentDtoAttrEnum {\n Icon = \"icon\",\n}\nexport enum LocationsUpdateIconErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: LocationsUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: LocationsUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum LocationsUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: LocationsUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `unique` - unique\n */\n code: LocationsUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum LocationsUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface LocationsUpdateTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: LocationsUpdateTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: LocationsUpdateTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum LocationsUpdateTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum LocationsUpdateTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Representation of login request via SSO OpenID.\n */\nexport interface LoginOpenIDRequestDto {\n redirect_uri?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Representation of code from sso open id exchange.\n */\nexport interface OpenIDCodeExchangeRequestDto {\n code: string;\n redirect_uri?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Representation of OpenID login response.\n */\nexport interface OpenIDRedirectDto {\n redirect_uri: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `name` - Name * `timezone` - Timezone\n */\nexport enum OrderingEnumDto {\n Name = \"name\",\n Timezone = \"timezone\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `parse_error` - Parse Error\n */\nexport enum ParseErrorCodeEnumDto {\n ParseError = \"parse_error\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `user` - User * `user_period` - User Period * `branch_period` - Branch Period\n */\nexport enum PeriodModelEnumDto {\n User = \"user\",\n UserPeriod = \"user_period\",\n BranchPeriod = \"branch_period\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `compensation` - Compensation * `vacation` - Vacation * `sick` - Sick * `personal_workday` - Personal Workday * `personal_holiday` - Personal Holiday * `zeroing` - Zeroing * `holiday` - Holiday * `workday` - Workday * `birthday` - Birthday\n */\nexport enum PeriodTypeEnumDto {\n Compensation = \"compensation\",\n Vacation = \"vacation\",\n Sick = \"sick\",\n PersonalWorkday = \"personal_workday\",\n PersonalHoliday = \"personal_holiday\",\n Zeroing = \"zeroing\",\n Holiday = \"holiday\",\n Workday = \"workday\",\n Birthday = \"birthday\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `manage_branch_periods` - Manage branch periods * `vacation_request` - Vacation request * `create_update_pto_user_periods` - Create and update PTO user periods * `delete_pto_user_periods` - Delete PTO user periods * `approve_reject_vacations` - Approve and reject vacations * `delete_vacations` - Delete vacations * `manage_users` - Manage users\n */\nexport enum PermissionEnumDto {\n ManageBranchPeriods = \"manage_branch_periods\",\n VacationRequest = \"vacation_request\",\n CreateUpdatePtoUserPeriods = \"create_update_pto_user_periods\",\n DeletePtoUserPeriods = \"delete_pto_user_periods\",\n ApproveRejectVacations = \"approve_reject_vacations\",\n DeleteVacations = \"delete_vacations\",\n ManageUsers = \"manage_users\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for managing user\\'s profile.\n */\nexport interface ProfileRequestDto {\n first_name: string;\n last_name: string;\n branch: number;\n department: number;\n work_type: number;\n location: number;\n middle_name?: string;\n avatar?: string | null;\n vendor?: number | null;\n recruited_by?: number | null;\n dismissal_reason?: number | null;\n role?: number | null;\n created_by?: number | null;\n updated_by?: number | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateAvatarErrorComponentDto {\n /**\n * * `avatar` - avatar\n */\n attr: ProfileUpdateAvatarErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: ProfileUpdateAvatarErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateAvatarErrorComponentDtoAttrEnum {\n Avatar = \"avatar\",\n}\nexport enum ProfileUpdateAvatarErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: ProfileUpdateBranchErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: ProfileUpdateBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum ProfileUpdateBranchErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateCreatedByErrorComponentDto {\n /**\n * * `created_by` - created_by\n */\n attr: ProfileUpdateCreatedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: ProfileUpdateCreatedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateCreatedByErrorComponentDtoAttrEnum {\n CreatedBy = \"created_by\",\n}\nexport enum ProfileUpdateCreatedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: ProfileUpdateDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: ProfileUpdateDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum ProfileUpdateDepartmentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateDismissalReasonErrorComponentDto {\n /**\n * * `dismissal_reason` - dismissal_reason\n */\n attr: ProfileUpdateDismissalReasonErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: ProfileUpdateDismissalReasonErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateDismissalReasonErrorComponentDtoAttrEnum {\n DismissalReason = \"dismissal_reason\",\n}\nexport enum ProfileUpdateDismissalReasonErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateFirstNameErrorComponentDto {\n /**\n * * `first_name` - first_name\n */\n attr: ProfileUpdateFirstNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: ProfileUpdateFirstNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateFirstNameErrorComponentDtoAttrEnum {\n FirstName = \"first_name\",\n}\nexport enum ProfileUpdateFirstNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateLastNameErrorComponentDto {\n /**\n * * `last_name` - last_name\n */\n attr: ProfileUpdateLastNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: ProfileUpdateLastNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateLastNameErrorComponentDtoAttrEnum {\n LastName = \"last_name\",\n}\nexport enum ProfileUpdateLastNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateLocationErrorComponentDto {\n /**\n * * `location` - location\n */\n attr: ProfileUpdateLocationErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: ProfileUpdateLocationErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateLocationErrorComponentDtoAttrEnum {\n Location = \"location\",\n}\nexport enum ProfileUpdateLocationErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateMiddleNameErrorComponentDto {\n /**\n * * `middle_name` - middle_name\n */\n attr: ProfileUpdateMiddleNameErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: ProfileUpdateMiddleNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateMiddleNameErrorComponentDtoAttrEnum {\n MiddleName = \"middle_name\",\n}\nexport enum ProfileUpdateMiddleNameErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: ProfileUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: ProfileUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum ProfileUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateRecruitedByErrorComponentDto {\n /**\n * * `recruited_by` - recruited_by\n */\n attr: ProfileUpdateRecruitedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: ProfileUpdateRecruitedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateRecruitedByErrorComponentDtoAttrEnum {\n RecruitedBy = \"recruited_by\",\n}\nexport enum ProfileUpdateRecruitedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateRoleErrorComponentDto {\n /**\n * * `role` - role\n */\n attr: ProfileUpdateRoleErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: ProfileUpdateRoleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateRoleErrorComponentDtoAttrEnum {\n Role = \"role\",\n}\nexport enum ProfileUpdateRoleErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateUpdatedByErrorComponentDto {\n /**\n * * `updated_by` - updated_by\n */\n attr: ProfileUpdateUpdatedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: ProfileUpdateUpdatedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateUpdatedByErrorComponentDtoAttrEnum {\n UpdatedBy = \"updated_by\",\n}\nexport enum ProfileUpdateUpdatedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateVendorErrorComponentDto {\n /**\n * * `vendor` - vendor\n */\n attr: ProfileUpdateVendorErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: ProfileUpdateVendorErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateVendorErrorComponentDtoAttrEnum {\n Vendor = \"vendor\",\n}\nexport enum ProfileUpdateVendorErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface ProfileUpdateWorkTypeErrorComponentDto {\n /**\n * * `work_type` - work_type\n */\n attr: ProfileUpdateWorkTypeErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: ProfileUpdateWorkTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum ProfileUpdateWorkTypeErrorComponentDtoAttrEnum {\n WorkType = \"work_type\",\n}\nexport enum ProfileUpdateWorkTypeErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Project model.\n */\nexport interface ProjectDto {\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: RolesCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: RolesCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum RolesCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: RolesCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: RolesCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum RolesCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDto {\n /**\n * * `permissions.INDEX.non_field_errors` - permissions.INDEX.non_field_errors\n */\n attr: RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum {\n PermissionsIndexNonFieldErrors = \"permissions.INDEX.non_field_errors\",\n}\nexport enum RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesCreatePermissionsINDEXPermissionErrorComponentDto {\n /**\n * * `permissions.INDEX.permission` - permissions.INDEX.permission\n */\n attr: RolesCreatePermissionsINDEXPermissionErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: RolesCreatePermissionsINDEXPermissionErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesCreatePermissionsINDEXPermissionErrorComponentDtoAttrEnum {\n PermissionsIndexPermission = \"permissions.INDEX.permission\",\n}\nexport enum RolesCreatePermissionsINDEXPermissionErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesCreatePermissionsINDEXScopeErrorComponentDto {\n /**\n * * `permissions.INDEX.scope` - permissions.INDEX.scope\n */\n attr: RolesCreatePermissionsINDEXScopeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: RolesCreatePermissionsINDEXScopeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesCreatePermissionsINDEXScopeErrorComponentDtoAttrEnum {\n PermissionsIndexScope = \"permissions.INDEX.scope\",\n}\nexport enum RolesCreatePermissionsINDEXScopeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesCreatePermissionsNonFieldErrorsErrorComponentDto {\n /**\n * * `permissions.non_field_errors` - permissions.non_field_errors\n */\n attr: RolesCreatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: RolesCreatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesCreatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum {\n PermissionsNonFieldErrors = \"permissions.non_field_errors\",\n}\nexport enum RolesCreatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum {\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesListPermissionsPermissionErrorComponentDto {\n /**\n * * `permissions__permission` - permissions__permission\n */\n attr: RolesListPermissionsPermissionErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: RolesListPermissionsPermissionErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesListPermissionsPermissionErrorComponentDtoAttrEnum {\n PermissionsPermission = \"permissions__permission\",\n}\nexport enum RolesListPermissionsPermissionErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesListPermissionsPermissionInErrorComponentDto {\n /**\n * * `permissions__permission__in` - permissions__permission__in\n */\n attr: RolesListPermissionsPermissionInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: RolesListPermissionsPermissionInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesListPermissionsPermissionInErrorComponentDtoAttrEnum {\n PermissionsPermissionIn = \"permissions__permission__in\",\n}\nexport enum RolesListPermissionsPermissionInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesListPermissionsScopeErrorComponentDto {\n /**\n * * `permissions__scope` - permissions__scope\n */\n attr: RolesListPermissionsScopeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: RolesListPermissionsScopeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesListPermissionsScopeErrorComponentDtoAttrEnum {\n PermissionsScope = \"permissions__scope\",\n}\nexport enum RolesListPermissionsScopeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesListPermissionsScopeInErrorComponentDto {\n /**\n * * `permissions__scope__in` - permissions__scope__in\n */\n attr: RolesListPermissionsScopeInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: RolesListPermissionsScopeInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesListPermissionsScopeInErrorComponentDtoAttrEnum {\n PermissionsScopeIn = \"permissions__scope__in\",\n}\nexport enum RolesListPermissionsScopeInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: RolesUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: RolesUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum RolesUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: RolesUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: RolesUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum RolesUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDto {\n /**\n * * `permissions.INDEX.non_field_errors` - permissions.INDEX.non_field_errors\n */\n attr: RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum {\n PermissionsIndexNonFieldErrors = \"permissions.INDEX.non_field_errors\",\n}\nexport enum RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesUpdatePermissionsINDEXPermissionErrorComponentDto {\n /**\n * * `permissions.INDEX.permission` - permissions.INDEX.permission\n */\n attr: RolesUpdatePermissionsINDEXPermissionErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: RolesUpdatePermissionsINDEXPermissionErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesUpdatePermissionsINDEXPermissionErrorComponentDtoAttrEnum {\n PermissionsIndexPermission = \"permissions.INDEX.permission\",\n}\nexport enum RolesUpdatePermissionsINDEXPermissionErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesUpdatePermissionsINDEXScopeErrorComponentDto {\n /**\n * * `permissions.INDEX.scope` - permissions.INDEX.scope\n */\n attr: RolesUpdatePermissionsINDEXScopeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: RolesUpdatePermissionsINDEXScopeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesUpdatePermissionsINDEXScopeErrorComponentDtoAttrEnum {\n PermissionsIndexScope = \"permissions.INDEX.scope\",\n}\nexport enum RolesUpdatePermissionsINDEXScopeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface RolesUpdatePermissionsNonFieldErrorsErrorComponentDto {\n /**\n * * `permissions.non_field_errors` - permissions.non_field_errors\n */\n attr: RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum {\n PermissionsNonFieldErrors = \"permissions.non_field_errors\",\n}\nexport enum RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum {\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface S3GetParamsCreateConfigErrorComponentDto {\n /**\n * * `config` - config\n */\n attr: S3GetParamsCreateConfigErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: S3GetParamsCreateConfigErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum S3GetParamsCreateConfigErrorComponentDtoAttrEnum {\n Config = \"config\",\n}\nexport enum S3GetParamsCreateConfigErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface S3GetParamsCreateContentLengthErrorComponentDto {\n /**\n * * `content_length` - content_length\n */\n attr: S3GetParamsCreateContentLengthErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `null` - null * `required` - required\n */\n code: S3GetParamsCreateContentLengthErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum S3GetParamsCreateContentLengthErrorComponentDtoAttrEnum {\n ContentLength = \"content_length\",\n}\nexport enum S3GetParamsCreateContentLengthErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface S3GetParamsCreateContentTypeErrorComponentDto {\n /**\n * * `content_type` - content_type\n */\n attr: S3GetParamsCreateContentTypeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: S3GetParamsCreateContentTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum S3GetParamsCreateContentTypeErrorComponentDtoAttrEnum {\n ContentType = \"content_type\",\n}\nexport enum S3GetParamsCreateContentTypeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface S3GetParamsCreateFilenameErrorComponentDto {\n /**\n * * `filename` - filename\n */\n attr: S3GetParamsCreateFilenameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: S3GetParamsCreateFilenameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum S3GetParamsCreateFilenameErrorComponentDtoAttrEnum {\n Filename = \"filename\",\n}\nexport enum S3GetParamsCreateFilenameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface S3GetParamsCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: S3GetParamsCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: S3GetParamsCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum S3GetParamsCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum S3GetParamsCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for showing params for s3 upload.\n */\nexport interface S3ParamsDto {\n success_action_status?: string | null;\n \"Content-Disposition\"?: string | null;\n \"x-amz-meta-user-id\"?: string | null;\n \"x-amz-meta-config-name\"?: string | null;\n \"Content-Type\"?: string | null;\n key?: string | null;\n \"x-amz-security-token\"?: string | null;\n \"x-amz-algorithm\"?: string | null;\n \"x-amz-credential\"?: string | null;\n \"x-amz-date\"?: string | null;\n policy?: string | null;\n \"x-amz-signature\"?: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `none` - None * `self` - Self * `department` - Department * `branch` - Branch * `all` - All\n */\nexport enum ScopeEnumDto {\n None = \"none\",\n Self = \"self\",\n Department = \"department\",\n Branch = \"branch\",\n All = \"all\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListBranchInErrorComponentDto {\n /**\n * * `branch__in` - branch__in\n */\n attr: SearchPeriodsListBranchInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListBranchInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListBranchInErrorComponentDtoAttrEnum {\n BranchIn = \"branch__in\",\n}\nexport enum SearchPeriodsListBranchInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListPeriodGteErrorComponentDto {\n /**\n * * `period__gte` - period__gte\n */\n attr: SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `required` - required\n */\n code: SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListPeriodGteErrorComponentDtoAttrEnum {\n PeriodGte = \"period__gte\",\n}\nexport enum SearchPeriodsListPeriodGteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListPeriodLteErrorComponentDto {\n /**\n * * `period__lte` - period__lte\n */\n attr: SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `required` - required\n */\n code: SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListPeriodLteErrorComponentDtoAttrEnum {\n PeriodLte = \"period__lte\",\n}\nexport enum SearchPeriodsListPeriodLteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListStatusErrorComponentDto {\n /**\n * * `status` - status\n */\n attr: SearchPeriodsListStatusErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListStatusErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListStatusErrorComponentDtoAttrEnum {\n Status = \"status\",\n}\nexport enum SearchPeriodsListStatusErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListTypeErrorComponentDto {\n /**\n * * `type` - type\n */\n attr: SearchPeriodsListTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListTypeErrorComponentDtoAttrEnum {\n Type = \"type\",\n}\nexport enum SearchPeriodsListTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserBranchInErrorComponentDto {\n /**\n * * `user__branch__in` - user__branch__in\n */\n attr: SearchPeriodsListUserBranchInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserBranchInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserBranchInErrorComponentDtoAttrEnum {\n UserBranchIn = \"user__branch__in\",\n}\nexport enum SearchPeriodsListUserBranchInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserDepartmentInErrorComponentDto {\n /**\n * * `user__department__in` - user__department__in\n */\n attr: SearchPeriodsListUserDepartmentInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserDepartmentInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserDepartmentInErrorComponentDtoAttrEnum {\n UserDepartmentIn = \"user__department__in\",\n}\nexport enum SearchPeriodsListUserDepartmentInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserInErrorComponentDto {\n /**\n * * `user__in` - user__in\n */\n attr: SearchPeriodsListUserInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserInErrorComponentDtoAttrEnum {\n UserIn = \"user__in\",\n}\nexport enum SearchPeriodsListUserInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserStatusInErrorComponentDto {\n /**\n * * `user__status__in` - user__status__in\n */\n attr: SearchPeriodsListUserStatusInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserStatusInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserStatusInErrorComponentDtoAttrEnum {\n UserStatusIn = \"user__status__in\",\n}\nexport enum SearchPeriodsListUserStatusInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserSuperviseesErrorComponentDto {\n /**\n * * `user__supervisees` - user__supervisees\n */\n attr: SearchPeriodsListUserSuperviseesErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserSuperviseesErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserSuperviseesErrorComponentDtoAttrEnum {\n UserSupervisees = \"user__supervisees\",\n}\nexport enum SearchPeriodsListUserSuperviseesErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserSupervisorsErrorComponentDto {\n /**\n * * `user__supervisors` - user__supervisors\n */\n attr: SearchPeriodsListUserSupervisorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserSupervisorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserSupervisorsErrorComponentDtoAttrEnum {\n UserSupervisors = \"user__supervisors\",\n}\nexport enum SearchPeriodsListUserSupervisorsErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SearchPeriodsListUserWorkTypeInErrorComponentDto {\n /**\n * * `user__work_type__in` - user__work_type__in\n */\n attr: SearchPeriodsListUserWorkTypeInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: SearchPeriodsListUserWorkTypeInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SearchPeriodsListUserWorkTypeInErrorComponentDtoAttrEnum {\n UserWorkTypeIn = \"user__work_type__in\",\n}\nexport enum SearchPeriodsListUserWorkTypeInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `server_error` - Server Error\n */\nexport enum ServerErrorEnumDto {\n ServerError = \"server_error\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Branch model. Contains less information for representing in others APIs.\n */\nexport interface SimpleBranchDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Branch model. Contains less information for representing in others APIs.\n */\nexport interface SimpleBranchRequestDto {\n name: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Department model. Contains less information for representing in others APIs.\n */\nexport interface SimpleDepartmentDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Department model. Contains less information for representing in others APIs.\n */\nexport interface SimpleDepartmentRequestDto {\n name: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `source` - Source * `reason` - Reason\n */\nexport enum SimpleDismissalReasonTypeEnumDto {\n Source = \"source\",\n Reason = \"reason\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Location model. Contains less information for representing in others APIs.\n */\nexport interface SimpleLocationDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Location model. Contains less information for representing in others APIs.\n */\nexport interface SimpleLocationRequestDto {\n name: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Role model. Contains less information for representing in others APIs.\n */\nexport interface SimpleRoleDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Role model. Contains less information for representing in others APIs.\n */\nexport interface SimpleRoleRequestDto {\n name: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for User model. Contains less information for representing in others APIs.\n */\nexport interface SimpleUserDto {\n first_name: string;\n last_name: string;\n email: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n middle_name?: string;\n avatar?: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for User model. Contains less information for representing in others APIs.\n */\nexport interface SimpleUserRequestDto {\n first_name: string;\n last_name: string;\n email: string;\n middle_name?: string;\n avatar?: string | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Vendor model. Contains less information for representing in others APIs.\n */\nexport interface SimpleVendorDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for Vendor model. Contains less information for representing in others APIs.\n */\nexport interface SimpleVendorRequestDto {\n name: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for WorkType model. Contains less information for representing in others APIs.\n */\nexport interface SimpleWorkTypeDto {\n name: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for WorkType model. Contains less information for representing in others APIs.\n */\nexport interface SimpleWorkTypeRequestDto {\n name: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoCodeExchangeCreateCodeErrorComponentDto {\n /**\n * * `code` - code\n */\n attr: SsoCodeExchangeCreateCodeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: SsoCodeExchangeCreateCodeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoCodeExchangeCreateCodeErrorComponentDtoAttrEnum {\n Code = \"code\",\n}\nexport enum SsoCodeExchangeCreateCodeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoCodeExchangeCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoCodeExchangeCreateRedirectUriErrorComponentDto {\n /**\n * * `redirect_uri` - redirect_uri\n */\n attr: SsoCodeExchangeCreateRedirectUriErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: SsoCodeExchangeCreateRedirectUriErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoCodeExchangeCreateRedirectUriErrorComponentDtoAttrEnum {\n RedirectUri = \"redirect_uri\",\n}\nexport enum SsoCodeExchangeCreateRedirectUriErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoDebugCreateEmailErrorComponentDto {\n /**\n * * `email` - email\n */\n attr: SsoDebugCreateEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: SsoDebugCreateEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoDebugCreateEmailErrorComponentDtoAttrEnum {\n Email = \"email\",\n}\nexport enum SsoDebugCreateEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoDebugCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: SsoDebugCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: SsoDebugCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoDebugCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum SsoDebugCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoStartCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: SsoStartCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: SsoStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoStartCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum SsoStartCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface SsoStartCreateRedirectUriErrorComponentDto {\n /**\n * * `redirect_uri` - redirect_uri\n */\n attr: SsoStartCreateRedirectUriErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: SsoStartCreateRedirectUriErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum SsoStartCreateRedirectUriErrorComponentDtoAttrEnum {\n RedirectUri = \"redirect_uri\",\n}\nexport enum SsoStartCreateRedirectUriErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenObtainPairDto {\n readonly access?: string;\n readonly refresh?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenRefreshCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: TokenRefreshCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: TokenRefreshCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum TokenRefreshCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum TokenRefreshCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenRefreshCreateRefreshErrorComponentDto {\n /**\n * * `refresh` - refresh\n */\n attr: TokenRefreshCreateRefreshErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: TokenRefreshCreateRefreshErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum TokenRefreshCreateRefreshErrorComponentDtoAttrEnum {\n Refresh = \"refresh\",\n}\nexport enum TokenRefreshCreateRefreshErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenRefreshDto {\n refresh: string;\n readonly access?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenRefreshRequestDto {\n refresh: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenVerifyCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: TokenVerifyCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: TokenVerifyCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum TokenVerifyCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum TokenVerifyCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenVerifyCreateTokenErrorComponentDto {\n /**\n * * `token` - token\n */\n attr: TokenVerifyCreateTokenErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: TokenVerifyCreateTokenErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum TokenVerifyCreateTokenErrorComponentDtoAttrEnum {\n Token = \"token\",\n}\nexport enum TokenVerifyCreateTokenErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TokenVerifyRequestDto {\n token: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateBillableCapacityErrorComponentDto {\n /**\n * * `billable_capacity` - billable_capacity\n */\n attr: UserCapacitiesCalculateCapacityCreateBillableCapacityErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateBillableCapacityErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateBillableCapacityErrorComponentDtoAttrEnum {\n BillableCapacity = \"billable_capacity\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateBillableCapacityErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateDateErrorComponentDto {\n /**\n * * `date` - date\n */\n attr: UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoAttrEnum {\n Date = \"date\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateTotalCapacityErrorComponentDto {\n /**\n * * `total_capacity` - total_capacity\n */\n attr: UserCapacitiesCalculateCapacityCreateTotalCapacityErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateTotalCapacityErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateTotalCapacityErrorComponentDtoAttrEnum {\n TotalCapacity = \"total_capacity\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateTotalCapacityErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateUserErrorComponentDto {\n /**\n * * `user` - user\n */\n attr: UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoAttrEnum {\n User = \"user\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDto {\n /**\n * * `work_type` - work_type\n */\n attr: UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoAttrEnum {\n WorkType = \"work_type\",\n}\nexport enum UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDto {\n /**\n * * `date__gte` - date__gte\n */\n attr: UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid\n */\n code: UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoAttrEnum {\n DateGte = \"date__gte\",\n}\nexport enum UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDto {\n /**\n * * `date__lte` - date__lte\n */\n attr: UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid\n */\n code: UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoAttrEnum {\n DateLte = \"date__lte\",\n}\nexport enum UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDto {\n /**\n * * `object_ids` - object_ids\n */\n attr: UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoAttrEnum {\n ObjectIds = \"object_ids\",\n}\nexport enum UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDto {\n /**\n * * `period_type` - period_type\n */\n attr: UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `required` - required\n */\n code: UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoAttrEnum {\n PeriodType = \"period_type\",\n}\nexport enum UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListBranchIdErrorComponentDto {\n /**\n * * `branch__id` - branch__id\n */\n attr: UserCapacitiesListBranchIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListBranchIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListBranchIdErrorComponentDtoAttrEnum {\n BranchId = \"branch__id\",\n}\nexport enum UserCapacitiesListBranchIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListBranchIdInErrorComponentDto {\n /**\n * * `branch__id__in` - branch__id__in\n */\n attr: UserCapacitiesListBranchIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListBranchIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListBranchIdInErrorComponentDtoAttrEnum {\n BranchIdIn = \"branch__id__in\",\n}\nexport enum UserCapacitiesListBranchIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListDateGteErrorComponentDto {\n /**\n * * `date__gte` - date__gte\n */\n attr: UserCapacitiesListDateGteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid\n */\n code: UserCapacitiesListDateGteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListDateGteErrorComponentDtoAttrEnum {\n DateGte = \"date__gte\",\n}\nexport enum UserCapacitiesListDateGteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListDateLteErrorComponentDto {\n /**\n * * `date__lte` - date__lte\n */\n attr: UserCapacitiesListDateLteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid\n */\n code: UserCapacitiesListDateLteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListDateLteErrorComponentDtoAttrEnum {\n DateLte = \"date__lte\",\n}\nexport enum UserCapacitiesListDateLteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListDepartmentIdErrorComponentDto {\n /**\n * * `department__id` - department__id\n */\n attr: UserCapacitiesListDepartmentIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListDepartmentIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListDepartmentIdErrorComponentDtoAttrEnum {\n DepartmentId = \"department__id\",\n}\nexport enum UserCapacitiesListDepartmentIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListDepartmentIdInErrorComponentDto {\n /**\n * * `department__id__in` - department__id__in\n */\n attr: UserCapacitiesListDepartmentIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListDepartmentIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListDepartmentIdInErrorComponentDtoAttrEnum {\n DepartmentIdIn = \"department__id__in\",\n}\nexport enum UserCapacitiesListDepartmentIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: UserCapacitiesListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum UserCapacitiesListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: UserCapacitiesListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum UserCapacitiesListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListUserIdErrorComponentDto {\n /**\n * * `user__id` - user__id\n */\n attr: UserCapacitiesListUserIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListUserIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListUserIdErrorComponentDtoAttrEnum {\n UserId = \"user__id\",\n}\nexport enum UserCapacitiesListUserIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListUserIdInErrorComponentDto {\n /**\n * * `user__id__in` - user__id__in\n */\n attr: UserCapacitiesListUserIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListUserIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListUserIdInErrorComponentDtoAttrEnum {\n UserIdIn = \"user__id__in\",\n}\nexport enum UserCapacitiesListUserIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListWorkTypeIdErrorComponentDto {\n /**\n * * `work_type__id` - work_type__id\n */\n attr: UserCapacitiesListWorkTypeIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListWorkTypeIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListWorkTypeIdErrorComponentDtoAttrEnum {\n WorkTypeId = \"work_type__id\",\n}\nexport enum UserCapacitiesListWorkTypeIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserCapacitiesListWorkTypeIdInErrorComponentDto {\n /**\n * * `work_type__id__in` - work_type__id__in\n */\n attr: UserCapacitiesListWorkTypeIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UserCapacitiesListWorkTypeIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserCapacitiesListWorkTypeIdInErrorComponentDtoAttrEnum {\n WorkTypeIdIn = \"work_type__id__in\",\n}\nexport enum UserCapacitiesListWorkTypeIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer class for UserCapacity model.\n */\nexport interface UserCapacityDto {\n date: string;\n billable_capacity: number;\n total_capacity: number;\n user: number;\n branch: number;\n work_type: number;\n department: number;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer class for UserCapacity model.\n */\nexport interface UserCapacityRequestDto {\n date: string;\n billable_capacity: number;\n total_capacity: number;\n user: number;\n branch: number;\n work_type: number;\n department: number;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for representing User\\'s data.\n */\nexport interface UserLoginRequestDto {\n email: string;\n role?: number | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: UserLoginsListBranchErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum UserLoginsListBranchErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListBranchInErrorComponentDto {\n /**\n * * `branch__in` - branch__in\n */\n attr: UserLoginsListBranchInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListBranchInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListBranchInErrorComponentDtoAttrEnum {\n BranchIn = \"branch__in\",\n}\nexport enum UserLoginsListBranchInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: UserLoginsListDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum UserLoginsListDepartmentErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListDepartmentInErrorComponentDto {\n /**\n * * `department__in` - department__in\n */\n attr: UserLoginsListDepartmentInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListDepartmentInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListDepartmentInErrorComponentDtoAttrEnum {\n DepartmentIn = \"department__in\",\n}\nexport enum UserLoginsListDepartmentInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListRoleErrorComponentDto {\n /**\n * * `role` - role\n */\n attr: UserLoginsListRoleErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListRoleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListRoleErrorComponentDtoAttrEnum {\n Role = \"role\",\n}\nexport enum UserLoginsListRoleErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListRoleInErrorComponentDto {\n /**\n * * `role__in` - role__in\n */\n attr: UserLoginsListRoleInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListRoleInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListRoleInErrorComponentDtoAttrEnum {\n RoleIn = \"role__in\",\n}\nexport enum UserLoginsListRoleInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListWorkTypeErrorComponentDto {\n /**\n * * `work_type` - work_type\n */\n attr: UserLoginsListWorkTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListWorkTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListWorkTypeErrorComponentDtoAttrEnum {\n WorkType = \"work_type\",\n}\nexport enum UserLoginsListWorkTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsListWorkTypeInErrorComponentDto {\n /**\n * * `work_type__in` - work_type__in\n */\n attr: UserLoginsListWorkTypeInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UserLoginsListWorkTypeInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsListWorkTypeInErrorComponentDtoAttrEnum {\n WorkTypeIn = \"work_type__in\",\n}\nexport enum UserLoginsListWorkTypeInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsUpdateEmailErrorComponentDto {\n /**\n * * `email` - email\n */\n attr: UserLoginsUpdateEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: UserLoginsUpdateEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsUpdateEmailErrorComponentDtoAttrEnum {\n Email = \"email\",\n}\nexport enum UserLoginsUpdateEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: UserLoginsUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: UserLoginsUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum UserLoginsUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserLoginsUpdateRoleErrorComponentDto {\n /**\n * * `role` - role\n */\n attr: UserLoginsUpdateRoleErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UserLoginsUpdateRoleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserLoginsUpdateRoleErrorComponentDtoAttrEnum {\n Role = \"role\",\n}\nexport enum UserLoginsUpdateRoleErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `approved` - Approved * `declined` - Declined * `pending` - Pending\n */\nexport enum UserPeriodStatusEnumDto {\n Approved = \"approved\",\n Declined = \"declined\",\n Pending = \"pending\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `compensation` - Compensation * `vacation` - Vacation * `sick` - Sick * `personal_workday` - Personal workday * `personal_holiday` - Personal holiday * `zeroing` - Zeroing\n */\nexport enum UserPeriodTypeEnumDto {\n Compensation = \"compensation\",\n Vacation = \"vacation\",\n Sick = \"sick\",\n PersonalWorkday = \"personal_workday\",\n PersonalHoliday = \"personal_holiday\",\n Zeroing = \"zeroing\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `active` - Active * `fired` - Fired * `vacation` - Vacation\n */\nexport enum UserStatusEnumDto {\n Active = \"active\",\n Fired = \"fired\",\n Vacation = \"vacation\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for get_period_capacity action from UserCapacityViewSet. It serialize info about user capacity sum for period.\n */\nexport interface UserSumCapacityDto {\n object_id: number;\n billable_capacity: number;\n total_capacity: number;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for managing user\\'s timezones.\n */\nexport interface UserTimezoneDto {\n name: string;\n timezone: string;\n readonly id?: number;\n readonly created?: string;\n readonly modified?: string;\n readonly user?: number;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for managing user\\'s timezones.\n */\nexport interface UserTimezoneRequestDto {\n name: string;\n timezone: string;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezoneSettingCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezoneSettingCreateOrderingErrorComponentDto {\n /**\n * * `ordering` - ordering\n */\n attr: UserTimezoneSettingCreateOrderingErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: UserTimezoneSettingCreateOrderingErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezoneSettingCreateOrderingErrorComponentDtoAttrEnum {\n Ordering = \"ordering\",\n}\nexport enum UserTimezoneSettingCreateOrderingErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezoneSettingCreateUse12FormatErrorComponentDto {\n /**\n * * `use_12_format` - use_12_format\n */\n attr: UserTimezoneSettingCreateUse12FormatErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UserTimezoneSettingCreateUse12FormatErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezoneSettingCreateUse12FormatErrorComponentDtoAttrEnum {\n Use12Format = \"use_12_format\",\n}\nexport enum UserTimezoneSettingCreateUse12FormatErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezonesSaveAllCreateINDEXNameErrorComponentDto {\n /**\n * * `INDEX.name` - INDEX.name\n */\n attr: UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoAttrEnum {\n IndexName = \"INDEX.name\",\n}\nexport enum UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDto {\n /**\n * * `INDEX.non_field_errors` - INDEX.non_field_errors\n */\n attr: UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoAttrEnum {\n IndexNonFieldErrors = \"INDEX.non_field_errors\",\n}\nexport enum UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDto {\n /**\n * * `INDEX.timezone` - INDEX.timezone\n */\n attr: UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoAttrEnum {\n IndexTimezone = \"INDEX.timezone\",\n}\nexport enum UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `not_a_list` - not_a_list * `null` - null\n */\n code: UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n NotAList = \"not_a_list\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateAvatarErrorComponentDto {\n /**\n * * `avatar` - avatar\n */\n attr: UsersCreateAvatarErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateAvatarErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateAvatarErrorComponentDtoAttrEnum {\n Avatar = \"avatar\",\n}\nexport enum UsersCreateAvatarErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateBirthdayErrorComponentDto {\n /**\n * * `birthday` - birthday\n */\n attr: UsersCreateBirthdayErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersCreateBirthdayErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateBirthdayErrorComponentDtoAttrEnum {\n Birthday = \"birthday\",\n}\nexport enum UsersCreateBirthdayErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: UsersCreateBranchErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersCreateBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum UsersCreateBranchErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateCreatedByErrorComponentDto {\n /**\n * * `created_by` - created_by\n */\n attr: UsersCreateCreatedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersCreateCreatedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateCreatedByErrorComponentDtoAttrEnum {\n CreatedBy = \"created_by\",\n}\nexport enum UsersCreateCreatedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: UsersCreateDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersCreateDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum UsersCreateDepartmentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateDismissalReasonErrorComponentDto {\n /**\n * * `dismissal_reason` - dismissal_reason\n */\n attr: UsersCreateDismissalReasonErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersCreateDismissalReasonErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateDismissalReasonErrorComponentDtoAttrEnum {\n DismissalReason = \"dismissal_reason\",\n}\nexport enum UsersCreateDismissalReasonErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateEmailErrorComponentDto {\n /**\n * * `email` - email\n */\n attr: UsersCreateEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: UsersCreateEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateEmailErrorComponentDtoAttrEnum {\n Email = \"email\",\n}\nexport enum UsersCreateEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateFirstNameErrorComponentDto {\n /**\n * * `first_name` - first_name\n */\n attr: UsersCreateFirstNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateFirstNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateFirstNameErrorComponentDtoAttrEnum {\n FirstName = \"first_name\",\n}\nexport enum UsersCreateFirstNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateFirstWorkingDayByContractErrorComponentDto {\n /**\n * * `first_working_day_by_contract` - first_working_day_by_contract\n */\n attr: UsersCreateFirstWorkingDayByContractErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersCreateFirstWorkingDayByContractErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateFirstWorkingDayByContractErrorComponentDtoAttrEnum {\n FirstWorkingDayByContract = \"first_working_day_by_contract\",\n}\nexport enum UsersCreateFirstWorkingDayByContractErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateFirstWorkingDayErrorComponentDto {\n /**\n * * `first_working_day` - first_working_day\n */\n attr: UsersCreateFirstWorkingDayErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersCreateFirstWorkingDayErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateFirstWorkingDayErrorComponentDtoAttrEnum {\n FirstWorkingDay = \"first_working_day\",\n}\nexport enum UsersCreateFirstWorkingDayErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateGithubUsernameErrorComponentDto {\n /**\n * * `github_username` - github_username\n */\n attr: UsersCreateGithubUsernameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateGithubUsernameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateGithubUsernameErrorComponentDtoAttrEnum {\n GithubUsername = \"github_username\",\n}\nexport enum UsersCreateGithubUsernameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateHomePhoneErrorComponentDto {\n /**\n * * `home_phone` - home_phone\n */\n attr: UsersCreateHomePhoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateHomePhoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateHomePhoneErrorComponentDtoAttrEnum {\n HomePhone = \"home_phone\",\n}\nexport enum UsersCreateHomePhoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateIsInternErrorComponentDto {\n /**\n * * `is_intern` - is_intern\n */\n attr: UsersCreateIsInternErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UsersCreateIsInternErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateIsInternErrorComponentDtoAttrEnum {\n IsIntern = \"is_intern\",\n}\nexport enum UsersCreateIsInternErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateIsPartTimeErrorComponentDto {\n /**\n * * `is_part_time` - is_part_time\n */\n attr: UsersCreateIsPartTimeErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UsersCreateIsPartTimeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateIsPartTimeErrorComponentDtoAttrEnum {\n IsPartTime = \"is_part_time\",\n}\nexport enum UsersCreateIsPartTimeErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateJiraAccountIdErrorComponentDto {\n /**\n * * `jira_account_id` - jira_account_id\n */\n attr: UsersCreateJiraAccountIdErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: UsersCreateJiraAccountIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateJiraAccountIdErrorComponentDtoAttrEnum {\n JiraAccountId = \"jira_account_id\",\n}\nexport enum UsersCreateJiraAccountIdErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateLastNameErrorComponentDto {\n /**\n * * `last_name` - last_name\n */\n attr: UsersCreateLastNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateLastNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateLastNameErrorComponentDtoAttrEnum {\n LastName = \"last_name\",\n}\nexport enum UsersCreateLastNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateLastWorkingDayErrorComponentDto {\n /**\n * * `last_working_day` - last_working_day\n */\n attr: UsersCreateLastWorkingDayErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersCreateLastWorkingDayErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateLastWorkingDayErrorComponentDtoAttrEnum {\n LastWorkingDay = \"last_working_day\",\n}\nexport enum UsersCreateLastWorkingDayErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateLocationErrorComponentDto {\n /**\n * * `location` - location\n */\n attr: UsersCreateLocationErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersCreateLocationErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateLocationErrorComponentDtoAttrEnum {\n Location = \"location\",\n}\nexport enum UsersCreateLocationErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateMiddleNameErrorComponentDto {\n /**\n * * `middle_name` - middle_name\n */\n attr: UsersCreateMiddleNameErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateMiddleNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateMiddleNameErrorComponentDtoAttrEnum {\n MiddleName = \"middle_name\",\n}\nexport enum UsersCreateMiddleNameErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateOfficePhoneErrorComponentDto {\n /**\n * * `office_phone` - office_phone\n */\n attr: UsersCreateOfficePhoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateOfficePhoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateOfficePhoneErrorComponentDtoAttrEnum {\n OfficePhone = \"office_phone\",\n}\nexport enum UsersCreateOfficePhoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateOnsiteErrorComponentDto {\n /**\n * * `onsite` - onsite\n */\n attr: UsersCreateOnsiteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UsersCreateOnsiteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateOnsiteErrorComponentDtoAttrEnum {\n Onsite = \"onsite\",\n}\nexport enum UsersCreateOnsiteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreatePersonalEmailErrorComponentDto {\n /**\n * * `personal_email` - personal_email\n */\n attr: UsersCreatePersonalEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreatePersonalEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreatePersonalEmailErrorComponentDtoAttrEnum {\n PersonalEmail = \"personal_email\",\n}\nexport enum UsersCreatePersonalEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreatePersonalPhoneErrorComponentDto {\n /**\n * * `personal_phone` - personal_phone\n */\n attr: UsersCreatePersonalPhoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreatePersonalPhoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreatePersonalPhoneErrorComponentDtoAttrEnum {\n PersonalPhone = \"personal_phone\",\n}\nexport enum UsersCreatePersonalPhoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateRecruitedByErrorComponentDto {\n /**\n * * `recruited_by` - recruited_by\n */\n attr: UsersCreateRecruitedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersCreateRecruitedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateRecruitedByErrorComponentDtoAttrEnum {\n RecruitedBy = \"recruited_by\",\n}\nexport enum UsersCreateRecruitedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateRoleErrorComponentDto {\n /**\n * * `role` - role\n */\n attr: UsersCreateRoleErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersCreateRoleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateRoleErrorComponentDtoAttrEnum {\n Role = \"role\",\n}\nexport enum UsersCreateRoleErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateSkypeErrorComponentDto {\n /**\n * * `skype` - skype\n */\n attr: UsersCreateSkypeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateSkypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateSkypeErrorComponentDtoAttrEnum {\n Skype = \"skype\",\n}\nexport enum UsersCreateSkypeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateSlackIdErrorComponentDto {\n /**\n * * `slack_id` - slack_id\n */\n attr: UsersCreateSlackIdErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateSlackIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateSlackIdErrorComponentDtoAttrEnum {\n SlackId = \"slack_id\",\n}\nexport enum UsersCreateSlackIdErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateStatusErrorComponentDto {\n /**\n * * `status` - status\n */\n attr: UsersCreateStatusErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: UsersCreateStatusErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateStatusErrorComponentDtoAttrEnum {\n Status = \"status\",\n}\nexport enum UsersCreateStatusErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateSuperviseesErrorComponentDto {\n /**\n * * `supervisees` - supervisees\n */\n attr: UsersCreateSuperviseesErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: UsersCreateSuperviseesErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateSuperviseesErrorComponentDtoAttrEnum {\n Supervisees = \"supervisees\",\n}\nexport enum UsersCreateSuperviseesErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateSupervisorsErrorComponentDto {\n /**\n * * `supervisors` - supervisors\n */\n attr: UsersCreateSupervisorsErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: UsersCreateSupervisorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateSupervisorsErrorComponentDtoAttrEnum {\n Supervisors = \"supervisors\",\n}\nexport enum UsersCreateSupervisorsErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: UsersCreateTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersCreateTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum UsersCreateTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateUpdatedByErrorComponentDto {\n /**\n * * `updated_by` - updated_by\n */\n attr: UsersCreateUpdatedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersCreateUpdatedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateUpdatedByErrorComponentDtoAttrEnum {\n UpdatedBy = \"updated_by\",\n}\nexport enum UsersCreateUpdatedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateUtilizationPercentErrorComponentDto {\n /**\n * * `utilization_percent` - utilization_percent\n */\n attr: UsersCreateUtilizationPercentErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required\n */\n code: UsersCreateUtilizationPercentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateUtilizationPercentErrorComponentDtoAttrEnum {\n UtilizationPercent = \"utilization_percent\",\n}\nexport enum UsersCreateUtilizationPercentErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n MaxValue = \"max_value\",\n MinValue = \"min_value\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateVendorErrorComponentDto {\n /**\n * * `vendor` - vendor\n */\n attr: UsersCreateVendorErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersCreateVendorErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateVendorErrorComponentDtoAttrEnum {\n Vendor = \"vendor\",\n}\nexport enum UsersCreateVendorErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersCreateWorkTypeErrorComponentDto {\n /**\n * * `work_type` - work_type\n */\n attr: UsersCreateWorkTypeErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersCreateWorkTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersCreateWorkTypeErrorComponentDtoAttrEnum {\n WorkType = \"work_type\",\n}\nexport enum UsersCreateWorkTypeErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: UsersListBranchErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum UsersListBranchErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListBranchInErrorComponentDto {\n /**\n * * `branch__in` - branch__in\n */\n attr: UsersListBranchInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListBranchInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListBranchInErrorComponentDtoAttrEnum {\n BranchIn = \"branch__in\",\n}\nexport enum UsersListBranchInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: UsersListDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum UsersListDepartmentErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListDepartmentInErrorComponentDto {\n /**\n * * `department__in` - department__in\n */\n attr: UsersListDepartmentInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListDepartmentInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListDepartmentInErrorComponentDtoAttrEnum {\n DepartmentIn = \"department__in\",\n}\nexport enum UsersListDepartmentInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: UsersListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UsersListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum UsersListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: UsersListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UsersListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum UsersListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListStatusErrorComponentDto {\n /**\n * * `status` - status\n */\n attr: UsersListStatusErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListStatusErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListStatusErrorComponentDtoAttrEnum {\n Status = \"status\",\n}\nexport enum UsersListStatusErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListStatusInErrorComponentDto {\n /**\n * * `status__in` - status__in\n */\n attr: UsersListStatusInErrorComponentDtoAttrEnum;\n /**\n * * `null_characters_not_allowed` - null_characters_not_allowed\n */\n code: UsersListStatusInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListStatusInErrorComponentDtoAttrEnum {\n StatusIn = \"status__in\",\n}\nexport enum UsersListStatusInErrorComponentDtoCodeEnum {\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListSuperviseesIdInErrorComponentDto {\n /**\n * * `supervisees__id__in` - supervisees__id__in\n */\n attr: UsersListSuperviseesIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UsersListSuperviseesIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListSuperviseesIdInErrorComponentDtoAttrEnum {\n SuperviseesIdIn = \"supervisees__id__in\",\n}\nexport enum UsersListSuperviseesIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListSupervisorsIdInErrorComponentDto {\n /**\n * * `supervisors__id__in` - supervisors__id__in\n */\n attr: UsersListSupervisorsIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: UsersListSupervisorsIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListSupervisorsIdInErrorComponentDtoAttrEnum {\n SupervisorsIdIn = \"supervisors__id__in\",\n}\nexport enum UsersListSupervisorsIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListWorkTypeErrorComponentDto {\n /**\n * * `work_type` - work_type\n */\n attr: UsersListWorkTypeErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListWorkTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListWorkTypeErrorComponentDtoAttrEnum {\n WorkType = \"work_type\",\n}\nexport enum UsersListWorkTypeErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersListWorkTypeInErrorComponentDto {\n /**\n * * `work_type__in` - work_type__in\n */\n attr: UsersListWorkTypeInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: UsersListWorkTypeInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersListWorkTypeInErrorComponentDtoAttrEnum {\n WorkTypeIn = \"work_type__in\",\n}\nexport enum UsersListWorkTypeInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateAvatarErrorComponentDto {\n /**\n * * `avatar` - avatar\n */\n attr: UsersUpdateAvatarErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateAvatarErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateAvatarErrorComponentDtoAttrEnum {\n Avatar = \"avatar\",\n}\nexport enum UsersUpdateAvatarErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateBirthdayErrorComponentDto {\n /**\n * * `birthday` - birthday\n */\n attr: UsersUpdateBirthdayErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersUpdateBirthdayErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateBirthdayErrorComponentDtoAttrEnum {\n Birthday = \"birthday\",\n}\nexport enum UsersUpdateBirthdayErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateBranchErrorComponentDto {\n /**\n * * `branch` - branch\n */\n attr: UsersUpdateBranchErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersUpdateBranchErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateBranchErrorComponentDtoAttrEnum {\n Branch = \"branch\",\n}\nexport enum UsersUpdateBranchErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateCreatedByErrorComponentDto {\n /**\n * * `created_by` - created_by\n */\n attr: UsersUpdateCreatedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersUpdateCreatedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateCreatedByErrorComponentDtoAttrEnum {\n CreatedBy = \"created_by\",\n}\nexport enum UsersUpdateCreatedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: UsersUpdateDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersUpdateDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum UsersUpdateDepartmentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateDismissalReasonErrorComponentDto {\n /**\n * * `dismissal_reason` - dismissal_reason\n */\n attr: UsersUpdateDismissalReasonErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersUpdateDismissalReasonErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateDismissalReasonErrorComponentDtoAttrEnum {\n DismissalReason = \"dismissal_reason\",\n}\nexport enum UsersUpdateDismissalReasonErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateEmailErrorComponentDto {\n /**\n * * `email` - email\n */\n attr: UsersUpdateEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: UsersUpdateEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateEmailErrorComponentDtoAttrEnum {\n Email = \"email\",\n}\nexport enum UsersUpdateEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateFirstNameErrorComponentDto {\n /**\n * * `first_name` - first_name\n */\n attr: UsersUpdateFirstNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateFirstNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateFirstNameErrorComponentDtoAttrEnum {\n FirstName = \"first_name\",\n}\nexport enum UsersUpdateFirstNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateFirstWorkingDayByContractErrorComponentDto {\n /**\n * * `first_working_day_by_contract` - first_working_day_by_contract\n */\n attr: UsersUpdateFirstWorkingDayByContractErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersUpdateFirstWorkingDayByContractErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateFirstWorkingDayByContractErrorComponentDtoAttrEnum {\n FirstWorkingDayByContract = \"first_working_day_by_contract\",\n}\nexport enum UsersUpdateFirstWorkingDayByContractErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateFirstWorkingDayErrorComponentDto {\n /**\n * * `first_working_day` - first_working_day\n */\n attr: UsersUpdateFirstWorkingDayErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersUpdateFirstWorkingDayErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateFirstWorkingDayErrorComponentDtoAttrEnum {\n FirstWorkingDay = \"first_working_day\",\n}\nexport enum UsersUpdateFirstWorkingDayErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateGithubUsernameErrorComponentDto {\n /**\n * * `github_username` - github_username\n */\n attr: UsersUpdateGithubUsernameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateGithubUsernameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateGithubUsernameErrorComponentDtoAttrEnum {\n GithubUsername = \"github_username\",\n}\nexport enum UsersUpdateGithubUsernameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateHomePhoneErrorComponentDto {\n /**\n * * `home_phone` - home_phone\n */\n attr: UsersUpdateHomePhoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateHomePhoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateHomePhoneErrorComponentDtoAttrEnum {\n HomePhone = \"home_phone\",\n}\nexport enum UsersUpdateHomePhoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateIsInternErrorComponentDto {\n /**\n * * `is_intern` - is_intern\n */\n attr: UsersUpdateIsInternErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UsersUpdateIsInternErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateIsInternErrorComponentDtoAttrEnum {\n IsIntern = \"is_intern\",\n}\nexport enum UsersUpdateIsInternErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateIsPartTimeErrorComponentDto {\n /**\n * * `is_part_time` - is_part_time\n */\n attr: UsersUpdateIsPartTimeErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UsersUpdateIsPartTimeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateIsPartTimeErrorComponentDtoAttrEnum {\n IsPartTime = \"is_part_time\",\n}\nexport enum UsersUpdateIsPartTimeErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateJiraAccountIdErrorComponentDto {\n /**\n * * `jira_account_id` - jira_account_id\n */\n attr: UsersUpdateJiraAccountIdErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: UsersUpdateJiraAccountIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateJiraAccountIdErrorComponentDtoAttrEnum {\n JiraAccountId = \"jira_account_id\",\n}\nexport enum UsersUpdateJiraAccountIdErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateLastNameErrorComponentDto {\n /**\n * * `last_name` - last_name\n */\n attr: UsersUpdateLastNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateLastNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateLastNameErrorComponentDtoAttrEnum {\n LastName = \"last_name\",\n}\nexport enum UsersUpdateLastNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateLastWorkingDayErrorComponentDto {\n /**\n * * `last_working_day` - last_working_day\n */\n attr: UsersUpdateLastWorkingDayErrorComponentDtoAttrEnum;\n /**\n * * `datetime` - datetime * `invalid` - invalid\n */\n code: UsersUpdateLastWorkingDayErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateLastWorkingDayErrorComponentDtoAttrEnum {\n LastWorkingDay = \"last_working_day\",\n}\nexport enum UsersUpdateLastWorkingDayErrorComponentDtoCodeEnum {\n Datetime = \"datetime\",\n Invalid = \"invalid\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateLocationErrorComponentDto {\n /**\n * * `location` - location\n */\n attr: UsersUpdateLocationErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersUpdateLocationErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateLocationErrorComponentDtoAttrEnum {\n Location = \"location\",\n}\nexport enum UsersUpdateLocationErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateMiddleNameErrorComponentDto {\n /**\n * * `middle_name` - middle_name\n */\n attr: UsersUpdateMiddleNameErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateMiddleNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateMiddleNameErrorComponentDtoAttrEnum {\n MiddleName = \"middle_name\",\n}\nexport enum UsersUpdateMiddleNameErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: UsersUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: UsersUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum UsersUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateOfficePhoneErrorComponentDto {\n /**\n * * `office_phone` - office_phone\n */\n attr: UsersUpdateOfficePhoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateOfficePhoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateOfficePhoneErrorComponentDtoAttrEnum {\n OfficePhone = \"office_phone\",\n}\nexport enum UsersUpdateOfficePhoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateOnsiteErrorComponentDto {\n /**\n * * `onsite` - onsite\n */\n attr: UsersUpdateOnsiteErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null * `required` - required\n */\n code: UsersUpdateOnsiteErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateOnsiteErrorComponentDtoAttrEnum {\n Onsite = \"onsite\",\n}\nexport enum UsersUpdateOnsiteErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdatePersonalEmailErrorComponentDto {\n /**\n * * `personal_email` - personal_email\n */\n attr: UsersUpdatePersonalEmailErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdatePersonalEmailErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdatePersonalEmailErrorComponentDtoAttrEnum {\n PersonalEmail = \"personal_email\",\n}\nexport enum UsersUpdatePersonalEmailErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdatePersonalPhoneErrorComponentDto {\n /**\n * * `personal_phone` - personal_phone\n */\n attr: UsersUpdatePersonalPhoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdatePersonalPhoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdatePersonalPhoneErrorComponentDtoAttrEnum {\n PersonalPhone = \"personal_phone\",\n}\nexport enum UsersUpdatePersonalPhoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateRecruitedByErrorComponentDto {\n /**\n * * `recruited_by` - recruited_by\n */\n attr: UsersUpdateRecruitedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersUpdateRecruitedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateRecruitedByErrorComponentDtoAttrEnum {\n RecruitedBy = \"recruited_by\",\n}\nexport enum UsersUpdateRecruitedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateRoleErrorComponentDto {\n /**\n * * `role` - role\n */\n attr: UsersUpdateRoleErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersUpdateRoleErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateRoleErrorComponentDtoAttrEnum {\n Role = \"role\",\n}\nexport enum UsersUpdateRoleErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateSkypeErrorComponentDto {\n /**\n * * `skype` - skype\n */\n attr: UsersUpdateSkypeErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateSkypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateSkypeErrorComponentDtoAttrEnum {\n Skype = \"skype\",\n}\nexport enum UsersUpdateSkypeErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateSlackIdErrorComponentDto {\n /**\n * * `slack_id` - slack_id\n */\n attr: UsersUpdateSlackIdErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateSlackIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateSlackIdErrorComponentDtoAttrEnum {\n SlackId = \"slack_id\",\n}\nexport enum UsersUpdateSlackIdErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateStatusErrorComponentDto {\n /**\n * * `status` - status\n */\n attr: UsersUpdateStatusErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice * `null` - null * `required` - required\n */\n code: UsersUpdateStatusErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateStatusErrorComponentDtoAttrEnum {\n Status = \"status\",\n}\nexport enum UsersUpdateStatusErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateSuperviseesErrorComponentDto {\n /**\n * * `supervisees` - supervisees\n */\n attr: UsersUpdateSuperviseesErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: UsersUpdateSuperviseesErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateSuperviseesErrorComponentDtoAttrEnum {\n Supervisees = \"supervisees\",\n}\nexport enum UsersUpdateSuperviseesErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateSupervisorsErrorComponentDto {\n /**\n * * `supervisors` - supervisors\n */\n attr: UsersUpdateSupervisorsErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `not_a_list` - not_a_list * `null` - null * `required` - required\n */\n code: UsersUpdateSupervisorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateSupervisorsErrorComponentDtoAttrEnum {\n Supervisors = \"supervisors\",\n}\nexport enum UsersUpdateSupervisorsErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n NotAList = \"not_a_list\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateTimezoneErrorComponentDto {\n /**\n * * `timezone` - timezone\n */\n attr: UsersUpdateTimezoneErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed\n */\n code: UsersUpdateTimezoneErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateTimezoneErrorComponentDtoAttrEnum {\n Timezone = \"timezone\",\n}\nexport enum UsersUpdateTimezoneErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateUpdatedByErrorComponentDto {\n /**\n * * `updated_by` - updated_by\n */\n attr: UsersUpdateUpdatedByErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersUpdateUpdatedByErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateUpdatedByErrorComponentDtoAttrEnum {\n UpdatedBy = \"updated_by\",\n}\nexport enum UsersUpdateUpdatedByErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateUtilizationPercentErrorComponentDto {\n /**\n * * `utilization_percent` - utilization_percent\n */\n attr: UsersUpdateUtilizationPercentErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_string_length` - max_string_length * `max_value` - max_value * `min_value` - min_value * `null` - null * `required` - required\n */\n code: UsersUpdateUtilizationPercentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateUtilizationPercentErrorComponentDtoAttrEnum {\n UtilizationPercent = \"utilization_percent\",\n}\nexport enum UsersUpdateUtilizationPercentErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxStringLength = \"max_string_length\",\n MaxValue = \"max_value\",\n MinValue = \"min_value\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateVendorErrorComponentDto {\n /**\n * * `vendor` - vendor\n */\n attr: UsersUpdateVendorErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: UsersUpdateVendorErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateVendorErrorComponentDtoAttrEnum {\n Vendor = \"vendor\",\n}\nexport enum UsersUpdateVendorErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface UsersUpdateWorkTypeErrorComponentDto {\n /**\n * * `work_type` - work_type\n */\n attr: UsersUpdateWorkTypeErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type * `null` - null * `required` - required\n */\n code: UsersUpdateWorkTypeErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum UsersUpdateWorkTypeErrorComponentDtoAttrEnum {\n WorkType = \"work_type\",\n}\nexport enum UsersUpdateWorkTypeErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n Null = \"null\",\n Required = \"required\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * * `validation_error` - Validation Error\n */\nexport enum ValidationErrorEnumDto {\n ValidationError = \"validation_error\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface VendorsCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: VendorsCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: VendorsCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum VendorsCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum VendorsCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface VendorsCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: VendorsCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: VendorsCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum VendorsCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum VendorsCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface VendorsListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: VendorsListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: VendorsListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum VendorsListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum VendorsListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface VendorsListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: VendorsListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: VendorsListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum VendorsListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum VendorsListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface VendorsUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: VendorsUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: VendorsUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum VendorsUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum VendorsUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface VendorsUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: VendorsUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: VendorsUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum VendorsUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum VendorsUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Serializer for WorkType model.\n */\nexport interface WorkTypeRequestDto {\n name: string;\n parent?: number | null;\n department?: number | null;\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesCreateDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: WorkTypesCreateDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: WorkTypesCreateDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesCreateDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum WorkTypesCreateDepartmentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesCreateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: WorkTypesCreateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: WorkTypesCreateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesCreateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum WorkTypesCreateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesCreateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: WorkTypesCreateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: WorkTypesCreateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesCreateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum WorkTypesCreateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesCreateParentErrorComponentDto {\n /**\n * * `parent` - parent\n */\n attr: WorkTypesCreateParentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: WorkTypesCreateParentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesCreateParentErrorComponentDtoAttrEnum {\n Parent = \"parent\",\n}\nexport enum WorkTypesCreateParentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesListDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: WorkTypesListDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: WorkTypesListDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesListDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum WorkTypesListDepartmentErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesListDepartmentInErrorComponentDto {\n /**\n * * `department__in` - department__in\n */\n attr: WorkTypesListDepartmentInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: WorkTypesListDepartmentInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesListDepartmentInErrorComponentDtoAttrEnum {\n DepartmentIn = \"department__in\",\n}\nexport enum WorkTypesListDepartmentInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesListIdErrorComponentDto {\n /**\n * * `id` - id\n */\n attr: WorkTypesListIdErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: WorkTypesListIdErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesListIdErrorComponentDtoAttrEnum {\n Id = \"id\",\n}\nexport enum WorkTypesListIdErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesListIdInErrorComponentDto {\n /**\n * * `id__in` - id__in\n */\n attr: WorkTypesListIdInErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `max_value` - max_value\n */\n code: WorkTypesListIdInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesListIdInErrorComponentDtoAttrEnum {\n IdIn = \"id__in\",\n}\nexport enum WorkTypesListIdInErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n MaxValue = \"max_value\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesListParentErrorComponentDto {\n /**\n * * `parent` - parent\n */\n attr: WorkTypesListParentErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: WorkTypesListParentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesListParentErrorComponentDtoAttrEnum {\n Parent = \"parent\",\n}\nexport enum WorkTypesListParentErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesListParentInErrorComponentDto {\n /**\n * * `parent__in` - parent__in\n */\n attr: WorkTypesListParentInErrorComponentDtoAttrEnum;\n /**\n * * `invalid_choice` - invalid_choice\n */\n code: WorkTypesListParentInErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesListParentInErrorComponentDtoAttrEnum {\n ParentIn = \"parent__in\",\n}\nexport enum WorkTypesListParentInErrorComponentDtoCodeEnum {\n InvalidChoice = \"invalid_choice\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesUpdateDepartmentErrorComponentDto {\n /**\n * * `department` - department\n */\n attr: WorkTypesUpdateDepartmentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: WorkTypesUpdateDepartmentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesUpdateDepartmentErrorComponentDtoAttrEnum {\n Department = \"department\",\n}\nexport enum WorkTypesUpdateDepartmentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesUpdateNameErrorComponentDto {\n /**\n * * `name` - name\n */\n attr: WorkTypesUpdateNameErrorComponentDtoAttrEnum;\n /**\n * * `blank` - blank * `invalid` - invalid * `max_length` - max_length * `null` - null * `null_characters_not_allowed` - null_characters_not_allowed * `required` - required * `surrogate_characters_not_allowed` - surrogate_characters_not_allowed * `unique` - unique\n */\n code: WorkTypesUpdateNameErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesUpdateNameErrorComponentDtoAttrEnum {\n Name = \"name\",\n}\nexport enum WorkTypesUpdateNameErrorComponentDtoCodeEnum {\n Blank = \"blank\",\n Invalid = \"invalid\",\n MaxLength = \"max_length\",\n Null = \"null\",\n NullCharactersNotAllowed = \"null_characters_not_allowed\",\n Required = \"required\",\n SurrogateCharactersNotAllowed = \"surrogate_characters_not_allowed\",\n Unique = \"unique\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesUpdateNonFieldErrorsErrorComponentDto {\n /**\n * * `non_field_errors` - non_field_errors\n */\n attr: WorkTypesUpdateNonFieldErrorsErrorComponentDtoAttrEnum;\n /**\n * * `invalid` - invalid * `null` - null\n */\n code: WorkTypesUpdateNonFieldErrorsErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesUpdateNonFieldErrorsErrorComponentDtoAttrEnum {\n NonFieldErrors = \"non_field_errors\",\n}\nexport enum WorkTypesUpdateNonFieldErrorsErrorComponentDtoCodeEnum {\n Invalid = \"invalid\",\n Null = \"null\",\n}\n","/**\n * Delmar Api\n *\n *\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface WorkTypesUpdateParentErrorComponentDto {\n /**\n * * `parent` - parent\n */\n attr: WorkTypesUpdateParentErrorComponentDtoAttrEnum;\n /**\n * * `does_not_exist` - does_not_exist * `incorrect_type` - incorrect_type\n */\n code: WorkTypesUpdateParentErrorComponentDtoCodeEnum;\n detail: string;\n}\nexport enum WorkTypesUpdateParentErrorComponentDtoAttrEnum {\n Parent = \"parent\",\n}\nexport enum WorkTypesUpdateParentErrorComponentDtoCodeEnum {\n DoesNotExist = \"does_not_exist\",\n IncorrectType = \"incorrect_type\",\n}\n","import {\n NgModule,\n ModuleWithProviders,\n SkipSelf,\n Optional,\n} from \"@angular/core\";\nimport { Configuration } from \"./configuration\";\nimport { HttpClient } from \"@angular/common/http\";\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [],\n})\nexport class ApiModule {\n public static forRoot(\n configurationFactory: () => Configuration,\n ): ModuleWithProviders<ApiModule> {\n return {\n ngModule: ApiModule,\n providers: [{ provide: Configuration, useFactory: configurationFactory }],\n };\n }\n\n constructor(\n @Optional() @SkipSelf() parentModule: ApiModule,\n @Optional() http: HttpClient,\n ) {\n if (parentModule) {\n throw new Error(\n \"ApiModule is already loaded. Import in your base AppModule only.\",\n );\n }\n if (!http) {\n throw new Error(\n \"You need to import the HttpClientModule in your AppModule! \\n\" +\n \"See also https://github.com/angular/angular/issues/20575\",\n );\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2.Configuration"],"mappings":"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"}