@saritasa/crm-delmar-core-sdk 0.0.125 → 0.0.127

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 (69) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +7 -1
  3. package/api/client-notes-api.service.d.ts +61 -0
  4. package/api/client-notes-api.serviceInterface.d.ts +43 -0
  5. package/api/project-notes-api.service.d.ts +61 -0
  6. package/api/project-notes-api.serviceInterface.d.ts +43 -0
  7. package/api/roles-api.serviceInterface.d.ts +1 -1
  8. package/esm2022/api/api.mjs +9 -1
  9. package/esm2022/api/client-notes-api.service.mjs +241 -0
  10. package/esm2022/api/client-notes-api.serviceInterface.mjs +2 -0
  11. package/esm2022/api/project-notes-api.service.mjs +241 -0
  12. package/esm2022/api/project-notes-api.serviceInterface.mjs +2 -0
  13. package/esm2022/api/roles-api.serviceInterface.mjs +1 -1
  14. package/esm2022/model/client-note.dto.mjs +2 -0
  15. package/esm2022/model/client-notes-list-client-error-component.dto.mjs +18 -0
  16. package/esm2022/model/client-notes-list-client-in-error-component.dto.mjs +18 -0
  17. package/esm2022/model/client-notes-list-error-response400.dto.mjs +2 -0
  18. package/esm2022/model/client-notes-list-error.dto.mjs +2 -0
  19. package/esm2022/model/client-notes-list-id-error-component.dto.mjs +19 -0
  20. package/esm2022/model/client-notes-list-id-in-error-component.dto.mjs +19 -0
  21. package/esm2022/model/client-notes-list-validation-error.dto.mjs +2 -0
  22. package/esm2022/model/client-notes-retrieve-error-response400.dto.mjs +2 -0
  23. package/esm2022/model/client-project-note-file.dto.mjs +11 -0
  24. package/esm2022/model/group-enum.dto.mjs +19 -0
  25. package/esm2022/model/models.mjs +23 -2
  26. package/esm2022/model/paginated-client-note-list.dto.mjs +2 -0
  27. package/esm2022/model/paginated-project-note-list.dto.mjs +2 -0
  28. package/esm2022/model/permission-data-request.dto.mjs +1 -1
  29. package/esm2022/model/permission-data.dto.mjs +1 -1
  30. package/esm2022/model/permission-enum.dto.mjs +3 -2
  31. package/esm2022/model/project-note.dto.mjs +2 -0
  32. package/esm2022/model/project-notes-list-error-response400.dto.mjs +2 -0
  33. package/esm2022/model/project-notes-list-error.dto.mjs +2 -0
  34. package/esm2022/model/project-notes-list-id-error-component.dto.mjs +19 -0
  35. package/esm2022/model/project-notes-list-id-in-error-component.dto.mjs +19 -0
  36. package/esm2022/model/project-notes-list-project-error-component.dto.mjs +18 -0
  37. package/esm2022/model/project-notes-list-project-in-error-component.dto.mjs +18 -0
  38. package/esm2022/model/project-notes-list-validation-error.dto.mjs +2 -0
  39. package/esm2022/model/project-notes-retrieve-error-response400.dto.mjs +2 -0
  40. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +676 -50
  41. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  42. package/model/client-note.dto.d.ts +30 -0
  43. package/model/client-notes-list-client-error-component.dto.d.ts +26 -0
  44. package/model/client-notes-list-client-in-error-component.dto.d.ts +26 -0
  45. package/model/client-notes-list-error-response400.dto.d.ts +16 -0
  46. package/model/client-notes-list-error.dto.d.ts +18 -0
  47. package/model/client-notes-list-id-error-component.dto.d.ts +27 -0
  48. package/model/client-notes-list-id-in-error-component.dto.d.ts +27 -0
  49. package/model/client-notes-list-validation-error.dto.d.ts +15 -0
  50. package/model/client-notes-retrieve-error-response400.dto.d.ts +15 -0
  51. package/model/client-project-note-file.dto.d.ts +18 -0
  52. package/model/{permission-group-enum.dto.d.ts → group-enum.dto.d.ts} +4 -3
  53. package/model/models.d.ts +22 -1
  54. package/model/paginated-client-note-list.dto.d.ts +16 -0
  55. package/model/paginated-project-note-list.dto.d.ts +16 -0
  56. package/model/permission-data-request.dto.d.ts +2 -2
  57. package/model/permission-data.dto.d.ts +2 -2
  58. package/model/permission-enum.dto.d.ts +3 -2
  59. package/model/project-note.dto.d.ts +30 -0
  60. package/model/project-notes-list-error-response400.dto.d.ts +16 -0
  61. package/model/project-notes-list-error.dto.d.ts +18 -0
  62. package/model/project-notes-list-id-error-component.dto.d.ts +27 -0
  63. package/model/project-notes-list-id-in-error-component.dto.d.ts +27 -0
  64. package/model/project-notes-list-project-error-component.dto.d.ts +26 -0
  65. package/model/project-notes-list-project-in-error-component.dto.d.ts +26 -0
  66. package/model/project-notes-list-validation-error.dto.d.ts +15 -0
  67. package/model/project-notes-retrieve-error-response400.dto.d.ts +15 -0
  68. package/package.json +2 -2
  69. package/esm2022/model/permission-group-enum.dto.mjs +0 -18
@@ -1141,6 +1141,238 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1141
1141
  type: Optional
1142
1142
  }] }] });
1143
1143
 
1144
+ /**
1145
+ * Delmar Api
1146
+ *
1147
+ *
1148
+ *
1149
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1150
+ * https://openapi-generator.tech
1151
+ * Do not edit the class manually.
1152
+ */
1153
+ /* tslint:disable:no-unused-variable member-ordering */
1154
+ class ClientNotesApiService {
1155
+ httpClient;
1156
+ basePath = "";
1157
+ defaultHeaders = new HttpHeaders();
1158
+ configuration = new Configuration();
1159
+ encoder;
1160
+ constructor(httpClient, basePath, configuration) {
1161
+ this.httpClient = httpClient;
1162
+ if (configuration) {
1163
+ this.configuration = configuration;
1164
+ }
1165
+ if (typeof this.configuration.basePath !== "string") {
1166
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
1167
+ if (firstBasePath != undefined) {
1168
+ basePath = firstBasePath;
1169
+ }
1170
+ if (typeof basePath !== "string") {
1171
+ basePath = this.basePath;
1172
+ }
1173
+ this.configuration.basePath = basePath;
1174
+ }
1175
+ this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
1176
+ }
1177
+ // @ts-ignore
1178
+ addToHttpParams(httpParams, value, key) {
1179
+ if (typeof value === "object" && value instanceof Date === false) {
1180
+ httpParams = this.addToHttpParamsRecursive(httpParams, value);
1181
+ }
1182
+ else {
1183
+ httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
1184
+ }
1185
+ return httpParams;
1186
+ }
1187
+ addToHttpParamsRecursive(httpParams, value, key) {
1188
+ if (value == null) {
1189
+ return httpParams;
1190
+ }
1191
+ if (typeof value === "object") {
1192
+ if (Array.isArray(value)) {
1193
+ value.forEach((elem) => (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)));
1194
+ }
1195
+ else if (value instanceof Date) {
1196
+ if (key != null) {
1197
+ httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
1198
+ }
1199
+ else {
1200
+ throw Error("key may not be null if value is Date");
1201
+ }
1202
+ }
1203
+ else {
1204
+ Object.keys(value).forEach((k) => (httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k)));
1205
+ }
1206
+ }
1207
+ else if (key != null) {
1208
+ httpParams = httpParams.append(key, value);
1209
+ }
1210
+ else {
1211
+ throw Error("key may not be null if value is not object or array");
1212
+ }
1213
+ return httpParams;
1214
+ }
1215
+ clientNotesList(requestParameters, observe = "body", reportProgress = false, options) {
1216
+ const client = requestParameters?.client;
1217
+ const clientIn = requestParameters?.clientIn;
1218
+ const id = requestParameters?.id;
1219
+ const idIn = requestParameters?.idIn;
1220
+ const limit = requestParameters?.limit;
1221
+ const offset = requestParameters?.offset;
1222
+ const ordering = requestParameters?.ordering;
1223
+ const search = requestParameters?.search;
1224
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
1225
+ if (client !== undefined && client !== null) {
1226
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, client, "client");
1227
+ }
1228
+ if (clientIn) {
1229
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...clientIn].join(COLLECTION_FORMATS["csv"]), "client__in");
1230
+ }
1231
+ if (id !== undefined && id !== null) {
1232
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, id, "id");
1233
+ }
1234
+ if (idIn) {
1235
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
1236
+ }
1237
+ if (limit !== undefined && limit !== null) {
1238
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, limit, "limit");
1239
+ }
1240
+ if (offset !== undefined && offset !== null) {
1241
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, offset, "offset");
1242
+ }
1243
+ if (ordering !== undefined && ordering !== null) {
1244
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
1245
+ }
1246
+ if (search !== undefined && search !== null) {
1247
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
1248
+ }
1249
+ let localVarHeaders = this.defaultHeaders;
1250
+ let localVarCredential;
1251
+ // authentication (cookieAuth) required
1252
+ localVarCredential = this.configuration.lookupCredential("cookieAuth");
1253
+ if (localVarCredential) {
1254
+ }
1255
+ // authentication (jwtAuth) required
1256
+ localVarCredential = this.configuration.lookupCredential("jwtAuth");
1257
+ if (localVarCredential) {
1258
+ localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
1259
+ }
1260
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
1261
+ if (localVarHttpHeaderAcceptSelected === undefined) {
1262
+ // to determine the Accept header
1263
+ const httpHeaderAccepts = ["application/json"];
1264
+ localVarHttpHeaderAcceptSelected =
1265
+ this.configuration.selectHeaderAccept(httpHeaderAccepts);
1266
+ }
1267
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1268
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
1269
+ }
1270
+ let localVarHttpContext = options && options.context;
1271
+ if (localVarHttpContext === undefined) {
1272
+ localVarHttpContext = new HttpContext();
1273
+ }
1274
+ let localVarTransferCache = options && options.transferCache;
1275
+ if (localVarTransferCache === undefined) {
1276
+ localVarTransferCache = true;
1277
+ }
1278
+ let responseType_ = "json";
1279
+ if (localVarHttpHeaderAcceptSelected) {
1280
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
1281
+ responseType_ = "text";
1282
+ }
1283
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1284
+ responseType_ = "json";
1285
+ }
1286
+ else {
1287
+ responseType_ = "blob";
1288
+ }
1289
+ }
1290
+ let localVarPath = `/api/v1/client-notes/`;
1291
+ return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
1292
+ context: localVarHttpContext,
1293
+ params: localVarQueryParameters,
1294
+ responseType: responseType_,
1295
+ withCredentials: this.configuration.withCredentials,
1296
+ headers: localVarHeaders,
1297
+ observe: observe,
1298
+ transferCache: localVarTransferCache,
1299
+ reportProgress: reportProgress,
1300
+ });
1301
+ }
1302
+ clientNotesRetrieve(requestParameters, observe = "body", reportProgress = false, options) {
1303
+ const id = requestParameters?.id;
1304
+ if (id === null || id === undefined) {
1305
+ throw new Error("Required parameter id was null or undefined when calling clientNotesRetrieve.");
1306
+ }
1307
+ let localVarHeaders = this.defaultHeaders;
1308
+ let localVarCredential;
1309
+ // authentication (cookieAuth) required
1310
+ localVarCredential = this.configuration.lookupCredential("cookieAuth");
1311
+ if (localVarCredential) {
1312
+ }
1313
+ // authentication (jwtAuth) required
1314
+ localVarCredential = this.configuration.lookupCredential("jwtAuth");
1315
+ if (localVarCredential) {
1316
+ localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
1317
+ }
1318
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
1319
+ if (localVarHttpHeaderAcceptSelected === undefined) {
1320
+ // to determine the Accept header
1321
+ const httpHeaderAccepts = ["application/json"];
1322
+ localVarHttpHeaderAcceptSelected =
1323
+ this.configuration.selectHeaderAccept(httpHeaderAccepts);
1324
+ }
1325
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1326
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
1327
+ }
1328
+ let localVarHttpContext = options && options.context;
1329
+ if (localVarHttpContext === undefined) {
1330
+ localVarHttpContext = new HttpContext();
1331
+ }
1332
+ let localVarTransferCache = options && options.transferCache;
1333
+ if (localVarTransferCache === undefined) {
1334
+ localVarTransferCache = true;
1335
+ }
1336
+ let responseType_ = "json";
1337
+ if (localVarHttpHeaderAcceptSelected) {
1338
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
1339
+ responseType_ = "text";
1340
+ }
1341
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1342
+ responseType_ = "json";
1343
+ }
1344
+ else {
1345
+ responseType_ = "blob";
1346
+ }
1347
+ }
1348
+ let localVarPath = `/api/v1/client-notes/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/`;
1349
+ return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
1350
+ context: localVarHttpContext,
1351
+ responseType: responseType_,
1352
+ withCredentials: this.configuration.withCredentials,
1353
+ headers: localVarHeaders,
1354
+ observe: observe,
1355
+ transferCache: localVarTransferCache,
1356
+ reportProgress: reportProgress,
1357
+ });
1358
+ }
1359
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ClientNotesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1360
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ClientNotesApiService, providedIn: "root" });
1361
+ }
1362
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ClientNotesApiService, decorators: [{
1363
+ type: Injectable,
1364
+ args: [{
1365
+ providedIn: "root",
1366
+ }]
1367
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1368
+ type: Optional
1369
+ }, {
1370
+ type: Inject,
1371
+ args: [BASE_PATH]
1372
+ }] }, { type: Configuration, decorators: [{
1373
+ type: Optional
1374
+ }] }] });
1375
+
1144
1376
  /**
1145
1377
  * Delmar Api
1146
1378
  *
@@ -5363,7 +5595,148 @@ class NotificationsApiService {
5363
5595
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5364
5596
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, providedIn: "root" });
5365
5597
  }
5366
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, decorators: [{
5598
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsApiService, decorators: [{
5599
+ type: Injectable,
5600
+ args: [{
5601
+ providedIn: "root",
5602
+ }]
5603
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
5604
+ type: Optional
5605
+ }, {
5606
+ type: Inject,
5607
+ args: [BASE_PATH]
5608
+ }] }, { type: Configuration, decorators: [{
5609
+ type: Optional
5610
+ }] }] });
5611
+
5612
+ /**
5613
+ * Delmar Api
5614
+ *
5615
+ *
5616
+ *
5617
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5618
+ * https://openapi-generator.tech
5619
+ * Do not edit the class manually.
5620
+ */
5621
+ /* tslint:disable:no-unused-variable member-ordering */
5622
+ class PermissionDataApiService {
5623
+ httpClient;
5624
+ basePath = "";
5625
+ defaultHeaders = new HttpHeaders();
5626
+ configuration = new Configuration();
5627
+ encoder;
5628
+ constructor(httpClient, basePath, configuration) {
5629
+ this.httpClient = httpClient;
5630
+ if (configuration) {
5631
+ this.configuration = configuration;
5632
+ }
5633
+ if (typeof this.configuration.basePath !== "string") {
5634
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
5635
+ if (firstBasePath != undefined) {
5636
+ basePath = firstBasePath;
5637
+ }
5638
+ if (typeof basePath !== "string") {
5639
+ basePath = this.basePath;
5640
+ }
5641
+ this.configuration.basePath = basePath;
5642
+ }
5643
+ this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
5644
+ }
5645
+ // @ts-ignore
5646
+ addToHttpParams(httpParams, value, key) {
5647
+ if (typeof value === "object" && value instanceof Date === false) {
5648
+ httpParams = this.addToHttpParamsRecursive(httpParams, value);
5649
+ }
5650
+ else {
5651
+ httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
5652
+ }
5653
+ return httpParams;
5654
+ }
5655
+ addToHttpParamsRecursive(httpParams, value, key) {
5656
+ if (value == null) {
5657
+ return httpParams;
5658
+ }
5659
+ if (typeof value === "object") {
5660
+ if (Array.isArray(value)) {
5661
+ value.forEach((elem) => (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)));
5662
+ }
5663
+ else if (value instanceof Date) {
5664
+ if (key != null) {
5665
+ httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
5666
+ }
5667
+ else {
5668
+ throw Error("key may not be null if value is Date");
5669
+ }
5670
+ }
5671
+ else {
5672
+ Object.keys(value).forEach((k) => (httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k)));
5673
+ }
5674
+ }
5675
+ else if (key != null) {
5676
+ httpParams = httpParams.append(key, value);
5677
+ }
5678
+ else {
5679
+ throw Error("key may not be null if value is not object or array");
5680
+ }
5681
+ return httpParams;
5682
+ }
5683
+ permissionDataList(observe = "body", reportProgress = false, options) {
5684
+ let localVarHeaders = this.defaultHeaders;
5685
+ let localVarCredential;
5686
+ // authentication (cookieAuth) required
5687
+ localVarCredential = this.configuration.lookupCredential("cookieAuth");
5688
+ if (localVarCredential) {
5689
+ }
5690
+ // authentication (jwtAuth) required
5691
+ localVarCredential = this.configuration.lookupCredential("jwtAuth");
5692
+ if (localVarCredential) {
5693
+ localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
5694
+ }
5695
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
5696
+ if (localVarHttpHeaderAcceptSelected === undefined) {
5697
+ // to determine the Accept header
5698
+ const httpHeaderAccepts = ["application/json"];
5699
+ localVarHttpHeaderAcceptSelected =
5700
+ this.configuration.selectHeaderAccept(httpHeaderAccepts);
5701
+ }
5702
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
5703
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
5704
+ }
5705
+ let localVarHttpContext = options && options.context;
5706
+ if (localVarHttpContext === undefined) {
5707
+ localVarHttpContext = new HttpContext();
5708
+ }
5709
+ let localVarTransferCache = options && options.transferCache;
5710
+ if (localVarTransferCache === undefined) {
5711
+ localVarTransferCache = true;
5712
+ }
5713
+ let responseType_ = "json";
5714
+ if (localVarHttpHeaderAcceptSelected) {
5715
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
5716
+ responseType_ = "text";
5717
+ }
5718
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
5719
+ responseType_ = "json";
5720
+ }
5721
+ else {
5722
+ responseType_ = "blob";
5723
+ }
5724
+ }
5725
+ let localVarPath = `/api/v1/permission-data/`;
5726
+ return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
5727
+ context: localVarHttpContext,
5728
+ responseType: responseType_,
5729
+ withCredentials: this.configuration.withCredentials,
5730
+ headers: localVarHeaders,
5731
+ observe: observe,
5732
+ transferCache: localVarTransferCache,
5733
+ reportProgress: reportProgress,
5734
+ });
5735
+ }
5736
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5737
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, providedIn: "root" });
5738
+ }
5739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, decorators: [{
5367
5740
  type: Injectable,
5368
5741
  args: [{
5369
5742
  providedIn: "root",
@@ -5387,7 +5760,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
5387
5760
  * Do not edit the class manually.
5388
5761
  */
5389
5762
  /* tslint:disable:no-unused-variable member-ordering */
5390
- class PermissionDataApiService {
5763
+ class ProfileApiService {
5391
5764
  httpClient;
5392
5765
  basePath = "";
5393
5766
  defaultHeaders = new HttpHeaders();
@@ -5448,7 +5821,7 @@ class PermissionDataApiService {
5448
5821
  }
5449
5822
  return httpParams;
5450
5823
  }
5451
- permissionDataList(observe = "body", reportProgress = false, options) {
5824
+ profileRetrieve(observe = "body", reportProgress = false, options) {
5452
5825
  let localVarHeaders = this.defaultHeaders;
5453
5826
  let localVarCredential;
5454
5827
  // authentication (cookieAuth) required
@@ -5490,7 +5863,7 @@ class PermissionDataApiService {
5490
5863
  responseType_ = "blob";
5491
5864
  }
5492
5865
  }
5493
- let localVarPath = `/api/v1/permission-data/`;
5866
+ let localVarPath = `/api/v1/profile/`;
5494
5867
  return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
5495
5868
  context: localVarHttpContext,
5496
5869
  responseType: responseType_,
@@ -5501,10 +5874,78 @@ class PermissionDataApiService {
5501
5874
  reportProgress: reportProgress,
5502
5875
  });
5503
5876
  }
5504
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5505
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, providedIn: "root" });
5877
+ profileUpdate(requestParameters, observe = "body", reportProgress = false, options) {
5878
+ const profileRequestDto = requestParameters?.profileRequestDto;
5879
+ if (profileRequestDto === null || profileRequestDto === undefined) {
5880
+ throw new Error("Required parameter profileRequestDto was null or undefined when calling profileUpdate.");
5881
+ }
5882
+ let localVarHeaders = this.defaultHeaders;
5883
+ let localVarCredential;
5884
+ // authentication (cookieAuth) required
5885
+ localVarCredential = this.configuration.lookupCredential("cookieAuth");
5886
+ if (localVarCredential) {
5887
+ }
5888
+ // authentication (jwtAuth) required
5889
+ localVarCredential = this.configuration.lookupCredential("jwtAuth");
5890
+ if (localVarCredential) {
5891
+ localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
5892
+ }
5893
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
5894
+ if (localVarHttpHeaderAcceptSelected === undefined) {
5895
+ // to determine the Accept header
5896
+ const httpHeaderAccepts = ["application/json"];
5897
+ localVarHttpHeaderAcceptSelected =
5898
+ this.configuration.selectHeaderAccept(httpHeaderAccepts);
5899
+ }
5900
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
5901
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
5902
+ }
5903
+ let localVarHttpContext = options && options.context;
5904
+ if (localVarHttpContext === undefined) {
5905
+ localVarHttpContext = new HttpContext();
5906
+ }
5907
+ let localVarTransferCache = options && options.transferCache;
5908
+ if (localVarTransferCache === undefined) {
5909
+ localVarTransferCache = true;
5910
+ }
5911
+ // to determine the Content-Type header
5912
+ const consumes = [
5913
+ "application/json",
5914
+ "application/x-www-form-urlencoded",
5915
+ "multipart/form-data",
5916
+ ];
5917
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5918
+ if (httpContentTypeSelected !== undefined) {
5919
+ localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
5920
+ }
5921
+ let responseType_ = "json";
5922
+ if (localVarHttpHeaderAcceptSelected) {
5923
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
5924
+ responseType_ = "text";
5925
+ }
5926
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
5927
+ responseType_ = "json";
5928
+ }
5929
+ else {
5930
+ responseType_ = "blob";
5931
+ }
5932
+ }
5933
+ let localVarPath = `/api/v1/profile/`;
5934
+ return this.httpClient.request("put", `${this.configuration.basePath}${localVarPath}`, {
5935
+ context: localVarHttpContext,
5936
+ body: profileRequestDto,
5937
+ responseType: responseType_,
5938
+ withCredentials: this.configuration.withCredentials,
5939
+ headers: localVarHeaders,
5940
+ observe: observe,
5941
+ transferCache: localVarTransferCache,
5942
+ reportProgress: reportProgress,
5943
+ });
5944
+ }
5945
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5946
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, providedIn: "root" });
5506
5947
  }
5507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PermissionDataApiService, decorators: [{
5948
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, decorators: [{
5508
5949
  type: Injectable,
5509
5950
  args: [{
5510
5951
  providedIn: "root",
@@ -5528,7 +5969,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
5528
5969
  * Do not edit the class manually.
5529
5970
  */
5530
5971
  /* tslint:disable:no-unused-variable member-ordering */
5531
- class ProfileApiService {
5972
+ class ProjectNotesApiService {
5532
5973
  httpClient;
5533
5974
  basePath = "";
5534
5975
  defaultHeaders = new HttpHeaders();
@@ -5589,7 +6030,40 @@ class ProfileApiService {
5589
6030
  }
5590
6031
  return httpParams;
5591
6032
  }
5592
- profileRetrieve(observe = "body", reportProgress = false, options) {
6033
+ projectNotesList(requestParameters, observe = "body", reportProgress = false, options) {
6034
+ const id = requestParameters?.id;
6035
+ const idIn = requestParameters?.idIn;
6036
+ const limit = requestParameters?.limit;
6037
+ const offset = requestParameters?.offset;
6038
+ const ordering = requestParameters?.ordering;
6039
+ const project = requestParameters?.project;
6040
+ const projectIn = requestParameters?.projectIn;
6041
+ const search = requestParameters?.search;
6042
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
6043
+ if (id !== undefined && id !== null) {
6044
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, id, "id");
6045
+ }
6046
+ if (idIn) {
6047
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
6048
+ }
6049
+ if (limit !== undefined && limit !== null) {
6050
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, limit, "limit");
6051
+ }
6052
+ if (offset !== undefined && offset !== null) {
6053
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, offset, "offset");
6054
+ }
6055
+ if (ordering !== undefined && ordering !== null) {
6056
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
6057
+ }
6058
+ if (project !== undefined && project !== null) {
6059
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, project, "project");
6060
+ }
6061
+ if (projectIn) {
6062
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...projectIn].join(COLLECTION_FORMATS["csv"]), "project__in");
6063
+ }
6064
+ if (search !== undefined && search !== null) {
6065
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
6066
+ }
5593
6067
  let localVarHeaders = this.defaultHeaders;
5594
6068
  let localVarCredential;
5595
6069
  // authentication (cookieAuth) required
@@ -5631,9 +6105,10 @@ class ProfileApiService {
5631
6105
  responseType_ = "blob";
5632
6106
  }
5633
6107
  }
5634
- let localVarPath = `/api/v1/profile/`;
6108
+ let localVarPath = `/api/v1/project-notes/`;
5635
6109
  return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
5636
6110
  context: localVarHttpContext,
6111
+ params: localVarQueryParameters,
5637
6112
  responseType: responseType_,
5638
6113
  withCredentials: this.configuration.withCredentials,
5639
6114
  headers: localVarHeaders,
@@ -5642,10 +6117,10 @@ class ProfileApiService {
5642
6117
  reportProgress: reportProgress,
5643
6118
  });
5644
6119
  }
5645
- profileUpdate(requestParameters, observe = "body", reportProgress = false, options) {
5646
- const profileRequestDto = requestParameters?.profileRequestDto;
5647
- if (profileRequestDto === null || profileRequestDto === undefined) {
5648
- throw new Error("Required parameter profileRequestDto was null or undefined when calling profileUpdate.");
6120
+ projectNotesRetrieve(requestParameters, observe = "body", reportProgress = false, options) {
6121
+ const id = requestParameters?.id;
6122
+ if (id === null || id === undefined) {
6123
+ throw new Error("Required parameter id was null or undefined when calling projectNotesRetrieve.");
5649
6124
  }
5650
6125
  let localVarHeaders = this.defaultHeaders;
5651
6126
  let localVarCredential;
@@ -5676,16 +6151,6 @@ class ProfileApiService {
5676
6151
  if (localVarTransferCache === undefined) {
5677
6152
  localVarTransferCache = true;
5678
6153
  }
5679
- // to determine the Content-Type header
5680
- const consumes = [
5681
- "application/json",
5682
- "application/x-www-form-urlencoded",
5683
- "multipart/form-data",
5684
- ];
5685
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5686
- if (httpContentTypeSelected !== undefined) {
5687
- localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
5688
- }
5689
6154
  let responseType_ = "json";
5690
6155
  if (localVarHttpHeaderAcceptSelected) {
5691
6156
  if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
@@ -5698,10 +6163,9 @@ class ProfileApiService {
5698
6163
  responseType_ = "blob";
5699
6164
  }
5700
6165
  }
5701
- let localVarPath = `/api/v1/profile/`;
5702
- return this.httpClient.request("put", `${this.configuration.basePath}${localVarPath}`, {
6166
+ let localVarPath = `/api/v1/project-notes/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/`;
6167
+ return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
5703
6168
  context: localVarHttpContext,
5704
- body: profileRequestDto,
5705
6169
  responseType: responseType_,
5706
6170
  withCredentials: this.configuration.withCredentials,
5707
6171
  headers: localVarHeaders,
@@ -5710,10 +6174,10 @@ class ProfileApiService {
5710
6174
  reportProgress: reportProgress,
5711
6175
  });
5712
6176
  }
5713
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5714
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, providedIn: "root" });
6177
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProjectNotesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6178
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProjectNotesApiService, providedIn: "root" });
5715
6179
  }
5716
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProfileApiService, decorators: [{
6180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProjectNotesApiService, decorators: [{
5717
6181
  type: Injectable,
5718
6182
  args: [{
5719
6183
  providedIn: "root",
@@ -11837,6 +12301,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
11837
12301
  const APIS = [
11838
12302
  BranchPeriodsApiService,
11839
12303
  BranchesApiService,
12304
+ ClientNotesApiService,
11840
12305
  ClientsApiService,
11841
12306
  DepartmentsApiService,
11842
12307
  DismissalReasonsApiService,
@@ -11848,6 +12313,7 @@ const APIS = [
11848
12313
  NotificationsApiService,
11849
12314
  PermissionDataApiService,
11850
12315
  ProfileApiService,
12316
+ ProjectNotesApiService,
11851
12317
  ProjectPrioritiesApiService,
11852
12318
  ProjectsApiService,
11853
12319
  RolesApiService,
@@ -13156,6 +13622,90 @@ var ClientErrorEnumDto;
13156
13622
  ClientErrorEnumDto["ClientError"] = "client_error";
13157
13623
  })(ClientErrorEnumDto || (ClientErrorEnumDto = {}));
13158
13624
 
13625
+ /**
13626
+ * Delmar Api
13627
+ *
13628
+ *
13629
+ *
13630
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
13631
+ * https://openapi-generator.tech
13632
+ * Do not edit the class manually.
13633
+ */
13634
+ var ClientNotesListClientErrorComponentDtoAttrEnum;
13635
+ (function (ClientNotesListClientErrorComponentDtoAttrEnum) {
13636
+ ClientNotesListClientErrorComponentDtoAttrEnum["Client"] = "client";
13637
+ })(ClientNotesListClientErrorComponentDtoAttrEnum || (ClientNotesListClientErrorComponentDtoAttrEnum = {}));
13638
+ var ClientNotesListClientErrorComponentDtoCodeEnum;
13639
+ (function (ClientNotesListClientErrorComponentDtoCodeEnum) {
13640
+ ClientNotesListClientErrorComponentDtoCodeEnum["InvalidChoice"] = "invalid_choice";
13641
+ })(ClientNotesListClientErrorComponentDtoCodeEnum || (ClientNotesListClientErrorComponentDtoCodeEnum = {}));
13642
+
13643
+ /**
13644
+ * Delmar Api
13645
+ *
13646
+ *
13647
+ *
13648
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
13649
+ * https://openapi-generator.tech
13650
+ * Do not edit the class manually.
13651
+ */
13652
+ var ClientNotesListClientInErrorComponentDtoAttrEnum;
13653
+ (function (ClientNotesListClientInErrorComponentDtoAttrEnum) {
13654
+ ClientNotesListClientInErrorComponentDtoAttrEnum["ClientIn"] = "client__in";
13655
+ })(ClientNotesListClientInErrorComponentDtoAttrEnum || (ClientNotesListClientInErrorComponentDtoAttrEnum = {}));
13656
+ var ClientNotesListClientInErrorComponentDtoCodeEnum;
13657
+ (function (ClientNotesListClientInErrorComponentDtoCodeEnum) {
13658
+ ClientNotesListClientInErrorComponentDtoCodeEnum["InvalidChoice"] = "invalid_choice";
13659
+ })(ClientNotesListClientInErrorComponentDtoCodeEnum || (ClientNotesListClientInErrorComponentDtoCodeEnum = {}));
13660
+
13661
+ /**
13662
+ * Delmar Api
13663
+ *
13664
+ *
13665
+ *
13666
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
13667
+ * https://openapi-generator.tech
13668
+ * Do not edit the class manually.
13669
+ */
13670
+ var ClientNotesListIdErrorComponentDtoAttrEnum;
13671
+ (function (ClientNotesListIdErrorComponentDtoAttrEnum) {
13672
+ ClientNotesListIdErrorComponentDtoAttrEnum["Id"] = "id";
13673
+ })(ClientNotesListIdErrorComponentDtoAttrEnum || (ClientNotesListIdErrorComponentDtoAttrEnum = {}));
13674
+ var ClientNotesListIdErrorComponentDtoCodeEnum;
13675
+ (function (ClientNotesListIdErrorComponentDtoCodeEnum) {
13676
+ ClientNotesListIdErrorComponentDtoCodeEnum["Invalid"] = "invalid";
13677
+ ClientNotesListIdErrorComponentDtoCodeEnum["MaxValue"] = "max_value";
13678
+ })(ClientNotesListIdErrorComponentDtoCodeEnum || (ClientNotesListIdErrorComponentDtoCodeEnum = {}));
13679
+
13680
+ /**
13681
+ * Delmar Api
13682
+ *
13683
+ *
13684
+ *
13685
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
13686
+ * https://openapi-generator.tech
13687
+ * Do not edit the class manually.
13688
+ */
13689
+ var ClientNotesListIdInErrorComponentDtoAttrEnum;
13690
+ (function (ClientNotesListIdInErrorComponentDtoAttrEnum) {
13691
+ ClientNotesListIdInErrorComponentDtoAttrEnum["IdIn"] = "id__in";
13692
+ })(ClientNotesListIdInErrorComponentDtoAttrEnum || (ClientNotesListIdInErrorComponentDtoAttrEnum = {}));
13693
+ var ClientNotesListIdInErrorComponentDtoCodeEnum;
13694
+ (function (ClientNotesListIdInErrorComponentDtoCodeEnum) {
13695
+ ClientNotesListIdInErrorComponentDtoCodeEnum["Invalid"] = "invalid";
13696
+ ClientNotesListIdInErrorComponentDtoCodeEnum["MaxValue"] = "max_value";
13697
+ })(ClientNotesListIdInErrorComponentDtoCodeEnum || (ClientNotesListIdInErrorComponentDtoCodeEnum = {}));
13698
+
13699
+ /**
13700
+ * Delmar Api
13701
+ *
13702
+ *
13703
+ *
13704
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
13705
+ * https://openapi-generator.tech
13706
+ * Do not edit the class manually.
13707
+ */
13708
+
13159
13709
  /**
13160
13710
  * Delmar Api
13161
13711
  *
@@ -16970,6 +17520,25 @@ var FileFormatEnumDto;
16970
17520
  FileFormatEnumDto["Xlsx"] = "xlsx";
16971
17521
  })(FileFormatEnumDto || (FileFormatEnumDto = {}));
16972
17522
 
17523
+ /**
17524
+ * Delmar Api
17525
+ *
17526
+ *
17527
+ *
17528
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
17529
+ * https://openapi-generator.tech
17530
+ * Do not edit the class manually.
17531
+ */
17532
+ /**
17533
+ * * `calendar` - calendar * `people` - people * `project` - project
17534
+ */
17535
+ var GroupEnumDto;
17536
+ (function (GroupEnumDto) {
17537
+ GroupEnumDto["Calendar"] = "calendar";
17538
+ GroupEnumDto["People"] = "people";
17539
+ GroupEnumDto["Project"] = "project";
17540
+ })(GroupEnumDto || (GroupEnumDto = {}));
17541
+
16973
17542
  /**
16974
17543
  * Delmar Api
16975
17544
  *
@@ -18992,7 +19561,7 @@ var PeriodTypeEnumDto;
18992
19561
  * Do not edit the class manually.
18993
19562
  */
18994
19563
  /**
18995
- * * `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
19564
+ * * `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 * `manage_clients` - Manage clients
18996
19565
  */
18997
19566
  var PermissionEnumDto;
18998
19567
  (function (PermissionEnumDto) {
@@ -19003,26 +19572,9 @@ var PermissionEnumDto;
19003
19572
  PermissionEnumDto["ApproveRejectVacations"] = "approve_reject_vacations";
19004
19573
  PermissionEnumDto["DeleteVacations"] = "delete_vacations";
19005
19574
  PermissionEnumDto["ManageUsers"] = "manage_users";
19575
+ PermissionEnumDto["ManageClients"] = "manage_clients";
19006
19576
  })(PermissionEnumDto || (PermissionEnumDto = {}));
19007
19577
 
19008
- /**
19009
- * Delmar Api
19010
- *
19011
- *
19012
- *
19013
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
19014
- * https://openapi-generator.tech
19015
- * Do not edit the class manually.
19016
- */
19017
- /**
19018
- * * `calendar` - calendar * `people` - people
19019
- */
19020
- var PermissionGroupEnumDto;
19021
- (function (PermissionGroupEnumDto) {
19022
- PermissionGroupEnumDto["Calendar"] = "calendar";
19023
- PermissionGroupEnumDto["People"] = "people";
19024
- })(PermissionGroupEnumDto || (PermissionGroupEnumDto = {}));
19025
-
19026
19578
  /**
19027
19579
  * Delmar Api
19028
19580
  *
@@ -19426,6 +19978,80 @@ var ProfileUpdateUpdatedByErrorComponentDtoCodeEnum;
19426
19978
  * Do not edit the class manually.
19427
19979
  */
19428
19980
 
19981
+ /**
19982
+ * Delmar Api
19983
+ *
19984
+ *
19985
+ *
19986
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
19987
+ * https://openapi-generator.tech
19988
+ * Do not edit the class manually.
19989
+ */
19990
+ var ProjectNotesListIdErrorComponentDtoAttrEnum;
19991
+ (function (ProjectNotesListIdErrorComponentDtoAttrEnum) {
19992
+ ProjectNotesListIdErrorComponentDtoAttrEnum["Id"] = "id";
19993
+ })(ProjectNotesListIdErrorComponentDtoAttrEnum || (ProjectNotesListIdErrorComponentDtoAttrEnum = {}));
19994
+ var ProjectNotesListIdErrorComponentDtoCodeEnum;
19995
+ (function (ProjectNotesListIdErrorComponentDtoCodeEnum) {
19996
+ ProjectNotesListIdErrorComponentDtoCodeEnum["Invalid"] = "invalid";
19997
+ ProjectNotesListIdErrorComponentDtoCodeEnum["MaxValue"] = "max_value";
19998
+ })(ProjectNotesListIdErrorComponentDtoCodeEnum || (ProjectNotesListIdErrorComponentDtoCodeEnum = {}));
19999
+
20000
+ /**
20001
+ * Delmar Api
20002
+ *
20003
+ *
20004
+ *
20005
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
20006
+ * https://openapi-generator.tech
20007
+ * Do not edit the class manually.
20008
+ */
20009
+ var ProjectNotesListIdInErrorComponentDtoAttrEnum;
20010
+ (function (ProjectNotesListIdInErrorComponentDtoAttrEnum) {
20011
+ ProjectNotesListIdInErrorComponentDtoAttrEnum["IdIn"] = "id__in";
20012
+ })(ProjectNotesListIdInErrorComponentDtoAttrEnum || (ProjectNotesListIdInErrorComponentDtoAttrEnum = {}));
20013
+ var ProjectNotesListIdInErrorComponentDtoCodeEnum;
20014
+ (function (ProjectNotesListIdInErrorComponentDtoCodeEnum) {
20015
+ ProjectNotesListIdInErrorComponentDtoCodeEnum["Invalid"] = "invalid";
20016
+ ProjectNotesListIdInErrorComponentDtoCodeEnum["MaxValue"] = "max_value";
20017
+ })(ProjectNotesListIdInErrorComponentDtoCodeEnum || (ProjectNotesListIdInErrorComponentDtoCodeEnum = {}));
20018
+
20019
+ /**
20020
+ * Delmar Api
20021
+ *
20022
+ *
20023
+ *
20024
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
20025
+ * https://openapi-generator.tech
20026
+ * Do not edit the class manually.
20027
+ */
20028
+ var ProjectNotesListProjectErrorComponentDtoAttrEnum;
20029
+ (function (ProjectNotesListProjectErrorComponentDtoAttrEnum) {
20030
+ ProjectNotesListProjectErrorComponentDtoAttrEnum["Project"] = "project";
20031
+ })(ProjectNotesListProjectErrorComponentDtoAttrEnum || (ProjectNotesListProjectErrorComponentDtoAttrEnum = {}));
20032
+ var ProjectNotesListProjectErrorComponentDtoCodeEnum;
20033
+ (function (ProjectNotesListProjectErrorComponentDtoCodeEnum) {
20034
+ ProjectNotesListProjectErrorComponentDtoCodeEnum["InvalidChoice"] = "invalid_choice";
20035
+ })(ProjectNotesListProjectErrorComponentDtoCodeEnum || (ProjectNotesListProjectErrorComponentDtoCodeEnum = {}));
20036
+
20037
+ /**
20038
+ * Delmar Api
20039
+ *
20040
+ *
20041
+ *
20042
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
20043
+ * https://openapi-generator.tech
20044
+ * Do not edit the class manually.
20045
+ */
20046
+ var ProjectNotesListProjectInErrorComponentDtoAttrEnum;
20047
+ (function (ProjectNotesListProjectInErrorComponentDtoAttrEnum) {
20048
+ ProjectNotesListProjectInErrorComponentDtoAttrEnum["ProjectIn"] = "project__in";
20049
+ })(ProjectNotesListProjectInErrorComponentDtoAttrEnum || (ProjectNotesListProjectInErrorComponentDtoAttrEnum = {}));
20050
+ var ProjectNotesListProjectInErrorComponentDtoCodeEnum;
20051
+ (function (ProjectNotesListProjectInErrorComponentDtoCodeEnum) {
20052
+ ProjectNotesListProjectInErrorComponentDtoCodeEnum["InvalidChoice"] = "invalid_choice";
20053
+ })(ProjectNotesListProjectInErrorComponentDtoCodeEnum || (ProjectNotesListProjectInErrorComponentDtoCodeEnum = {}));
20054
+
19429
20055
  /**
19430
20056
  * Delmar Api
19431
20057
  *
@@ -26585,5 +27211,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
26585
27211
  * Generated bundle index. Do not edit.
26586
27212
  */
26587
27213
 
26588
- export { APIS, ApiModule, BASE_PATH, BillingFrequencyEnumDto, BillingMethodEnumDto, BillingTypeEnumDto, BranchPeriodTypeEnumDto, BranchPeriodsApiService, BranchPeriodsCreateBranchErrorComponentDtoAttrEnum, BranchPeriodsCreateBranchErrorComponentDtoCodeEnum, BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsCreateTitleErrorComponentDtoAttrEnum, BranchPeriodsCreateTitleErrorComponentDtoCodeEnum, BranchPeriodsCreateTypeErrorComponentDtoAttrEnum, BranchPeriodsCreateTypeErrorComponentDtoCodeEnum, BranchPeriodsUpdateBranchErrorComponentDtoAttrEnum, BranchPeriodsUpdateBranchErrorComponentDtoCodeEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsUpdateTitleErrorComponentDtoAttrEnum, BranchPeriodsUpdateTitleErrorComponentDtoCodeEnum, BranchPeriodsUpdateTypeErrorComponentDtoAttrEnum, BranchPeriodsUpdateTypeErrorComponentDtoCodeEnum, BranchesApiService, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreateAddress1ErrorComponentDtoAttrEnum, BranchesCreateAddress1ErrorComponentDtoCodeEnum, BranchesCreateAddress2ErrorComponentDtoAttrEnum, BranchesCreateAddress2ErrorComponentDtoCodeEnum, BranchesCreateCeoErrorComponentDtoAttrEnum, BranchesCreateCeoErrorComponentDtoCodeEnum, BranchesCreateCodeErrorComponentDtoAttrEnum, BranchesCreateCodeErrorComponentDtoCodeEnum, BranchesCreateCountryErrorComponentDtoAttrEnum, BranchesCreateCountryErrorComponentDtoCodeEnum, BranchesCreateHrEmailErrorComponentDtoAttrEnum, BranchesCreateHrEmailErrorComponentDtoCodeEnum, BranchesCreateIconErrorComponentDtoAttrEnum, BranchesCreateIconErrorComponentDtoCodeEnum, BranchesCreateIsOverseaErrorComponentDtoAttrEnum, BranchesCreateIsOverseaErrorComponentDtoCodeEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesCreateNameErrorComponentDtoAttrEnum, BranchesCreateNameErrorComponentDtoCodeEnum, BranchesCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreatePostalCodeErrorComponentDtoAttrEnum, BranchesCreatePostalCodeErrorComponentDtoCodeEnum, BranchesCreateStateErrorComponentDtoAttrEnum, BranchesCreateStateErrorComponentDtoCodeEnum, BranchesCreateTimezoneErrorComponentDtoAttrEnum, BranchesCreateTimezoneErrorComponentDtoCodeEnum, BranchesCreateVacationDaysCountErrorComponentDtoAttrEnum, BranchesCreateVacationDaysCountErrorComponentDtoCodeEnum, BranchesCreateVacationPeriodErrorComponentDtoAttrEnum, BranchesCreateVacationPeriodErrorComponentDtoCodeEnum, BranchesListIdErrorComponentDtoAttrEnum, BranchesListIdErrorComponentDtoCodeEnum, BranchesListIdInErrorComponentDtoAttrEnum, BranchesListIdInErrorComponentDtoCodeEnum, BranchesUpdateAddress1ErrorComponentDtoAttrEnum, BranchesUpdateAddress1ErrorComponentDtoCodeEnum, BranchesUpdateAddress2ErrorComponentDtoAttrEnum, BranchesUpdateAddress2ErrorComponentDtoCodeEnum, BranchesUpdateCeoErrorComponentDtoAttrEnum, BranchesUpdateCeoErrorComponentDtoCodeEnum, BranchesUpdateCodeErrorComponentDtoAttrEnum, BranchesUpdateCodeErrorComponentDtoCodeEnum, BranchesUpdateCountryErrorComponentDtoAttrEnum, BranchesUpdateCountryErrorComponentDtoCodeEnum, BranchesUpdateHrEmailErrorComponentDtoAttrEnum, BranchesUpdateHrEmailErrorComponentDtoCodeEnum, BranchesUpdateIconErrorComponentDtoAttrEnum, BranchesUpdateIconErrorComponentDtoCodeEnum, BranchesUpdateIsOverseaErrorComponentDtoAttrEnum, BranchesUpdateIsOverseaErrorComponentDtoCodeEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesUpdateNameErrorComponentDtoAttrEnum, BranchesUpdateNameErrorComponentDtoCodeEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesUpdatePostalCodeErrorComponentDtoAttrEnum, BranchesUpdatePostalCodeErrorComponentDtoCodeEnum, BranchesUpdateStateErrorComponentDtoAttrEnum, BranchesUpdateStateErrorComponentDtoCodeEnum, BranchesUpdateTimezoneErrorComponentDtoAttrEnum, BranchesUpdateTimezoneErrorComponentDtoCodeEnum, BranchesUpdateVacationDaysCountErrorComponentDtoAttrEnum, BranchesUpdateVacationDaysCountErrorComponentDtoCodeEnum, BranchesUpdateVacationPeriodErrorComponentDtoAttrEnum, BranchesUpdateVacationPeriodErrorComponentDtoCodeEnum, BranchesUsersStatsListIdErrorComponentDtoAttrEnum, BranchesUsersStatsListIdErrorComponentDtoCodeEnum, BranchesUsersStatsListIdInErrorComponentDtoAttrEnum, BranchesUsersStatsListIdInErrorComponentDtoCodeEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoAttrEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoCodeEnum, COLLECTION_FORMATS, ClientErrorEnumDto, ClientStatusEnumDto, ClientsApiService, ClientsListAccountManagerErrorComponentDtoAttrEnum, ClientsListAccountManagerErrorComponentDtoCodeEnum, ClientsListAccountManagerInErrorComponentDtoAttrEnum, ClientsListAccountManagerInErrorComponentDtoCodeEnum, ClientsListAddress1ErrorComponentDtoAttrEnum, ClientsListAddress1ErrorComponentDtoCodeEnum, ClientsListAddress1InErrorComponentDtoAttrEnum, ClientsListAddress1InErrorComponentDtoCodeEnum, ClientsListAddress2ErrorComponentDtoAttrEnum, ClientsListAddress2ErrorComponentDtoCodeEnum, ClientsListAddress2InErrorComponentDtoAttrEnum, ClientsListAddress2InErrorComponentDtoCodeEnum, ClientsListBillingAddress1ErrorComponentDtoAttrEnum, ClientsListBillingAddress1ErrorComponentDtoCodeEnum, ClientsListBillingAddress1InErrorComponentDtoAttrEnum, ClientsListBillingAddress1InErrorComponentDtoCodeEnum, ClientsListBillingAddress2ErrorComponentDtoAttrEnum, ClientsListBillingAddress2ErrorComponentDtoCodeEnum, ClientsListBillingAddress2InErrorComponentDtoAttrEnum, ClientsListBillingAddress2InErrorComponentDtoCodeEnum, ClientsListBillingCityErrorComponentDtoAttrEnum, ClientsListBillingCityErrorComponentDtoCodeEnum, ClientsListBillingCityInErrorComponentDtoAttrEnum, ClientsListBillingCityInErrorComponentDtoCodeEnum, ClientsListBillingCountryErrorComponentDtoAttrEnum, ClientsListBillingCountryErrorComponentDtoCodeEnum, ClientsListBillingCountryInErrorComponentDtoAttrEnum, ClientsListBillingCountryInErrorComponentDtoCodeEnum, ClientsListBillingMethodErrorComponentDtoAttrEnum, ClientsListBillingMethodErrorComponentDtoCodeEnum, ClientsListBillingMethodInErrorComponentDtoAttrEnum, ClientsListBillingMethodInErrorComponentDtoCodeEnum, ClientsListBillingNotesContainsErrorComponentDtoAttrEnum, ClientsListBillingNotesContainsErrorComponentDtoCodeEnum, ClientsListBillingNotesErrorComponentDtoAttrEnum, ClientsListBillingNotesErrorComponentDtoCodeEnum, ClientsListBillingNotesInErrorComponentDtoAttrEnum, ClientsListBillingNotesInErrorComponentDtoCodeEnum, ClientsListBillingStateErrorComponentDtoAttrEnum, ClientsListBillingStateErrorComponentDtoCodeEnum, ClientsListBillingStateInErrorComponentDtoAttrEnum, ClientsListBillingStateInErrorComponentDtoCodeEnum, ClientsListBillingZipErrorComponentDtoAttrEnum, ClientsListBillingZipErrorComponentDtoCodeEnum, ClientsListBillingZipInErrorComponentDtoAttrEnum, ClientsListBillingZipInErrorComponentDtoCodeEnum, ClientsListCityErrorComponentDtoAttrEnum, ClientsListCityErrorComponentDtoCodeEnum, ClientsListCityInErrorComponentDtoAttrEnum, ClientsListCityInErrorComponentDtoCodeEnum, ClientsListContractUntilGteErrorComponentDtoAttrEnum, ClientsListContractUntilGteErrorComponentDtoCodeEnum, ClientsListContractUntilLteErrorComponentDtoAttrEnum, ClientsListContractUntilLteErrorComponentDtoCodeEnum, ClientsListCountryErrorComponentDtoAttrEnum, ClientsListCountryErrorComponentDtoCodeEnum, ClientsListCountryInErrorComponentDtoAttrEnum, ClientsListCountryInErrorComponentDtoCodeEnum, ClientsListCreatedByErrorComponentDtoAttrEnum, ClientsListCreatedByErrorComponentDtoCodeEnum, ClientsListCreatedByInErrorComponentDtoAttrEnum, ClientsListCreatedByInErrorComponentDtoCodeEnum, ClientsListIdErrorComponentDtoAttrEnum, ClientsListIdErrorComponentDtoCodeEnum, ClientsListIdInErrorComponentDtoAttrEnum, ClientsListIdInErrorComponentDtoCodeEnum, ClientsListNotesContainsErrorComponentDtoAttrEnum, ClientsListNotesContainsErrorComponentDtoCodeEnum, ClientsListNotesErrorComponentDtoAttrEnum, ClientsListNotesErrorComponentDtoCodeEnum, ClientsListNotesInErrorComponentDtoAttrEnum, ClientsListNotesInErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsListQbClientIdErrorComponentDtoAttrEnum, ClientsListQbClientIdErrorComponentDtoCodeEnum, ClientsListQbClientIdInErrorComponentDtoAttrEnum, ClientsListQbClientIdInErrorComponentDtoCodeEnum, ClientsListStateErrorComponentDtoAttrEnum, ClientsListStateErrorComponentDtoCodeEnum, ClientsListStateInErrorComponentDtoAttrEnum, ClientsListStateInErrorComponentDtoCodeEnum, ClientsListStatusErrorComponentDtoAttrEnum, ClientsListStatusErrorComponentDtoCodeEnum, ClientsListStatusInErrorComponentDtoAttrEnum, ClientsListStatusInErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsListUpdatedByErrorComponentDtoAttrEnum, ClientsListUpdatedByErrorComponentDtoCodeEnum, ClientsListUpdatedByInErrorComponentDtoAttrEnum, ClientsListUpdatedByInErrorComponentDtoCodeEnum, ClientsListWebsiteErrorComponentDtoAttrEnum, ClientsListWebsiteErrorComponentDtoCodeEnum, ClientsListWebsiteInErrorComponentDtoAttrEnum, ClientsListWebsiteInErrorComponentDtoCodeEnum, ClientsListZipErrorComponentDtoAttrEnum, ClientsListZipErrorComponentDtoCodeEnum, ClientsListZipInErrorComponentDtoAttrEnum, ClientsListZipInErrorComponentDtoCodeEnum, ClientsListZohoAccountIdErrorComponentDtoAttrEnum, ClientsListZohoAccountIdErrorComponentDtoCodeEnum, ClientsListZohoAccountIdInErrorComponentDtoAttrEnum, ClientsListZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ConfigEnumDto, Configuration, DepartmentsApiService, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateColorErrorComponentDtoAttrEnum, DepartmentsCreateColorErrorComponentDtoCodeEnum, DepartmentsCreateNameErrorComponentDtoAttrEnum, DepartmentsCreateNameErrorComponentDtoCodeEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateWorkTypesErrorComponentDtoAttrEnum, DepartmentsCreateWorkTypesErrorComponentDtoCodeEnum, DepartmentsListIdErrorComponentDtoAttrEnum, DepartmentsListIdErrorComponentDtoCodeEnum, DepartmentsListIdInErrorComponentDtoAttrEnum, DepartmentsListIdInErrorComponentDtoCodeEnum, DepartmentsListNameErrorComponentDtoAttrEnum, DepartmentsListNameErrorComponentDtoCodeEnum, DepartmentsListNameInErrorComponentDtoAttrEnum, DepartmentsListNameInErrorComponentDtoCodeEnum, DepartmentsListWorkTypesIdInErrorComponentDtoAttrEnum, DepartmentsListWorkTypesIdInErrorComponentDtoCodeEnum, DepartmentsUpdateColorErrorComponentDtoAttrEnum, DepartmentsUpdateColorErrorComponentDtoCodeEnum, DepartmentsUpdateNameErrorComponentDtoAttrEnum, DepartmentsUpdateNameErrorComponentDtoCodeEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsUpdateWorkTypesErrorComponentDtoAttrEnum, DepartmentsUpdateWorkTypesErrorComponentDtoCodeEnum, DismissalReasonsApiService, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsCreateNameErrorComponentDtoAttrEnum, DismissalReasonsCreateNameErrorComponentDtoCodeEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsListIdErrorComponentDtoAttrEnum, DismissalReasonsListIdErrorComponentDtoCodeEnum, DismissalReasonsListIdInErrorComponentDtoAttrEnum, DismissalReasonsListIdInErrorComponentDtoCodeEnum, DismissalReasonsListNameErrorComponentDtoAttrEnum, DismissalReasonsListNameErrorComponentDtoCodeEnum, DismissalReasonsListNameInErrorComponentDtoAttrEnum, DismissalReasonsListNameInErrorComponentDtoCodeEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsUpdateNameErrorComponentDtoAttrEnum, DismissalReasonsUpdateNameErrorComponentDtoCodeEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ErrorCode401EnumDto, ErrorCode403EnumDto, ErrorCode404EnumDto, ErrorCode405EnumDto, ErrorCode406EnumDto, ErrorCode415EnumDto, ErrorCode500EnumDto, ExportStatusEnumDto, ExportUsersApiService, ExportUsersStartCreateFileFormatErrorComponentDtoAttrEnum, ExportUsersStartCreateFileFormatErrorComponentDtoCodeEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, FileFormatEnumDto, JiraClientApiService, JiraClientCreateProjectCreateInstanceErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateInstanceErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoCodeEnum, JiraInstancesApiService, JobTypeEnumDto, JobsApiService, JobsBillableChartListBilledByErrorComponentDtoAttrEnum, JobsBillableChartListBilledByErrorComponentDtoCodeEnum, JobsBillableChartListBilledByInErrorComponentDtoAttrEnum, JobsBillableChartListBilledByInErrorComponentDtoCodeEnum, JobsBillableChartListBranchErrorComponentDtoAttrEnum, JobsBillableChartListBranchErrorComponentDtoCodeEnum, JobsBillableChartListBranchInErrorComponentDtoAttrEnum, JobsBillableChartListBranchInErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByInErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByInErrorComponentDtoCodeEnum, JobsBillableChartListDateGteErrorComponentDtoAttrEnum, JobsBillableChartListDateGteErrorComponentDtoCodeEnum, JobsBillableChartListDateLteErrorComponentDtoAttrEnum, JobsBillableChartListDateLteErrorComponentDtoCodeEnum, JobsBillableChartListIdErrorComponentDtoAttrEnum, JobsBillableChartListIdErrorComponentDtoCodeEnum, JobsBillableChartListIdInErrorComponentDtoAttrEnum, JobsBillableChartListIdInErrorComponentDtoCodeEnum, JobsBillableChartListTaskErrorComponentDtoAttrEnum, JobsBillableChartListTaskErrorComponentDtoCodeEnum, JobsBillableChartListTaskInErrorComponentDtoAttrEnum, JobsBillableChartListTaskInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectInErrorComponentDtoCodeEnum, JobsBillableChartListTimeSpanErrorComponentDtoAttrEnum, JobsBillableChartListTimeSpanErrorComponentDtoCodeEnum, JobsBillableChartListTypeErrorComponentDtoAttrEnum, JobsBillableChartListTypeErrorComponentDtoCodeEnum, JobsBillableChartListTypeInErrorComponentDtoAttrEnum, JobsBillableChartListTypeInErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByInErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByInErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeInErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeInErrorComponentDtoCodeEnum, JobsListBilledByErrorComponentDtoAttrEnum, JobsListBilledByErrorComponentDtoCodeEnum, JobsListBilledByInErrorComponentDtoAttrEnum, JobsListBilledByInErrorComponentDtoCodeEnum, JobsListBranchErrorComponentDtoAttrEnum, JobsListBranchErrorComponentDtoCodeEnum, JobsListBranchInErrorComponentDtoAttrEnum, JobsListBranchInErrorComponentDtoCodeEnum, JobsListCreatedByErrorComponentDtoAttrEnum, JobsListCreatedByErrorComponentDtoCodeEnum, JobsListCreatedByInErrorComponentDtoAttrEnum, JobsListCreatedByInErrorComponentDtoCodeEnum, JobsListDateGteErrorComponentDtoAttrEnum, JobsListDateGteErrorComponentDtoCodeEnum, JobsListDateLteErrorComponentDtoAttrEnum, JobsListDateLteErrorComponentDtoCodeEnum, JobsListIdErrorComponentDtoAttrEnum, JobsListIdErrorComponentDtoCodeEnum, JobsListIdInErrorComponentDtoAttrEnum, JobsListIdInErrorComponentDtoCodeEnum, JobsListTaskErrorComponentDtoAttrEnum, JobsListTaskErrorComponentDtoCodeEnum, JobsListTaskInErrorComponentDtoAttrEnum, JobsListTaskInErrorComponentDtoCodeEnum, JobsListTaskProjectClientErrorComponentDtoAttrEnum, JobsListTaskProjectClientErrorComponentDtoCodeEnum, JobsListTaskProjectClientInErrorComponentDtoAttrEnum, JobsListTaskProjectClientInErrorComponentDtoCodeEnum, JobsListTaskProjectErrorComponentDtoAttrEnum, JobsListTaskProjectErrorComponentDtoCodeEnum, JobsListTaskProjectInErrorComponentDtoAttrEnum, JobsListTaskProjectInErrorComponentDtoCodeEnum, JobsListTypeErrorComponentDtoAttrEnum, JobsListTypeErrorComponentDtoCodeEnum, JobsListTypeInErrorComponentDtoAttrEnum, JobsListTypeInErrorComponentDtoCodeEnum, JobsListUpdatedByErrorComponentDtoAttrEnum, JobsListUpdatedByErrorComponentDtoCodeEnum, JobsListUpdatedByInErrorComponentDtoAttrEnum, JobsListUpdatedByInErrorComponentDtoCodeEnum, JobsListWorkTypeErrorComponentDtoAttrEnum, JobsListWorkTypeErrorComponentDtoCodeEnum, JobsListWorkTypeInErrorComponentDtoAttrEnum, JobsListWorkTypeInErrorComponentDtoCodeEnum, JobsProductionChartListBilledByErrorComponentDtoAttrEnum, JobsProductionChartListBilledByErrorComponentDtoCodeEnum, JobsProductionChartListBilledByInErrorComponentDtoAttrEnum, JobsProductionChartListBilledByInErrorComponentDtoCodeEnum, JobsProductionChartListBranchErrorComponentDtoAttrEnum, JobsProductionChartListBranchErrorComponentDtoCodeEnum, JobsProductionChartListBranchInErrorComponentDtoAttrEnum, JobsProductionChartListBranchInErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByInErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByInErrorComponentDtoCodeEnum, JobsProductionChartListDateGteErrorComponentDtoAttrEnum, JobsProductionChartListDateGteErrorComponentDtoCodeEnum, JobsProductionChartListDateLteErrorComponentDtoAttrEnum, JobsProductionChartListDateLteErrorComponentDtoCodeEnum, JobsProductionChartListIdErrorComponentDtoAttrEnum, JobsProductionChartListIdErrorComponentDtoCodeEnum, JobsProductionChartListIdInErrorComponentDtoAttrEnum, JobsProductionChartListIdInErrorComponentDtoCodeEnum, JobsProductionChartListTaskErrorComponentDtoAttrEnum, JobsProductionChartListTaskErrorComponentDtoCodeEnum, JobsProductionChartListTaskInErrorComponentDtoAttrEnum, JobsProductionChartListTaskInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectInErrorComponentDtoCodeEnum, JobsProductionChartListTimeSpanErrorComponentDtoAttrEnum, JobsProductionChartListTimeSpanErrorComponentDtoCodeEnum, JobsProductionChartListTypeErrorComponentDtoAttrEnum, JobsProductionChartListTypeErrorComponentDtoCodeEnum, JobsProductionChartListTypeInErrorComponentDtoAttrEnum, JobsProductionChartListTypeInErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByInErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByInErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeInErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeInErrorComponentDtoCodeEnum, LocationsApiService, LocationsCreateIconErrorComponentDtoAttrEnum, LocationsCreateIconErrorComponentDtoCodeEnum, LocationsCreateNameErrorComponentDtoAttrEnum, LocationsCreateNameErrorComponentDtoCodeEnum, LocationsCreateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsCreateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsCreateTimezoneErrorComponentDtoAttrEnum, LocationsCreateTimezoneErrorComponentDtoCodeEnum, LocationsListIdErrorComponentDtoAttrEnum, LocationsListIdErrorComponentDtoCodeEnum, LocationsListIdInErrorComponentDtoAttrEnum, LocationsListIdInErrorComponentDtoCodeEnum, LocationsListNameErrorComponentDtoAttrEnum, LocationsListNameErrorComponentDtoCodeEnum, LocationsListNameInErrorComponentDtoAttrEnum, LocationsListNameInErrorComponentDtoCodeEnum, LocationsListTimezoneErrorComponentDtoAttrEnum, LocationsListTimezoneErrorComponentDtoCodeEnum, LocationsListTimezoneInErrorComponentDtoAttrEnum, LocationsListTimezoneInErrorComponentDtoCodeEnum, LocationsUpdateIconErrorComponentDtoAttrEnum, LocationsUpdateIconErrorComponentDtoCodeEnum, LocationsUpdateNameErrorComponentDtoAttrEnum, LocationsUpdateNameErrorComponentDtoCodeEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsUpdateTimezoneErrorComponentDtoAttrEnum, LocationsUpdateTimezoneErrorComponentDtoCodeEnum, NotificationTypeEnumDto, NotificationsApiService, NotificationsListCreatedGtErrorComponentDtoAttrEnum, NotificationsListCreatedGtErrorComponentDtoCodeEnum, NotificationsListCreatedGteErrorComponentDtoAttrEnum, NotificationsListCreatedGteErrorComponentDtoCodeEnum, NotificationsListCreatedLtErrorComponentDtoAttrEnum, NotificationsListCreatedLtErrorComponentDtoCodeEnum, NotificationsListCreatedLteErrorComponentDtoAttrEnum, NotificationsListCreatedLteErrorComponentDtoCodeEnum, NotificationsListIdErrorComponentDtoAttrEnum, NotificationsListIdErrorComponentDtoCodeEnum, NotificationsListIdGtErrorComponentDtoAttrEnum, NotificationsListIdGtErrorComponentDtoCodeEnum, NotificationsListIdGteErrorComponentDtoAttrEnum, NotificationsListIdGteErrorComponentDtoCodeEnum, NotificationsListIdInErrorComponentDtoAttrEnum, NotificationsListIdInErrorComponentDtoCodeEnum, NotificationsListIdLtErrorComponentDtoAttrEnum, NotificationsListIdLtErrorComponentDtoCodeEnum, NotificationsListIdLteErrorComponentDtoAttrEnum, NotificationsListIdLteErrorComponentDtoCodeEnum, NotificationsListTypeErrorComponentDtoAttrEnum, NotificationsListTypeErrorComponentDtoCodeEnum, NotificationsListTypeInErrorComponentDtoAttrEnum, NotificationsListTypeInErrorComponentDtoCodeEnum, ParseErrorCodeEnumDto, PeriodModelEnumDto, PeriodTypeEnumDto, PermissionDataApiService, PermissionEnumDto, PermissionGroupEnumDto, PriorityEnumDto, ProfileApiService, ProfileUpdateAvatarErrorComponentDtoAttrEnum, ProfileUpdateAvatarErrorComponentDtoCodeEnum, ProfileUpdateBirthdayErrorComponentDtoAttrEnum, ProfileUpdateBirthdayErrorComponentDtoCodeEnum, ProfileUpdateCreatedByErrorComponentDtoAttrEnum, ProfileUpdateCreatedByErrorComponentDtoCodeEnum, ProfileUpdateFirstNameErrorComponentDtoAttrEnum, ProfileUpdateFirstNameErrorComponentDtoCodeEnum, ProfileUpdateGithubUsernameErrorComponentDtoAttrEnum, ProfileUpdateGithubUsernameErrorComponentDtoCodeEnum, ProfileUpdateHomePhoneErrorComponentDtoAttrEnum, ProfileUpdateHomePhoneErrorComponentDtoCodeEnum, ProfileUpdateLastNameErrorComponentDtoAttrEnum, ProfileUpdateLastNameErrorComponentDtoCodeEnum, ProfileUpdateLocationErrorComponentDtoAttrEnum, ProfileUpdateLocationErrorComponentDtoCodeEnum, ProfileUpdateMiddleNameErrorComponentDtoAttrEnum, ProfileUpdateMiddleNameErrorComponentDtoCodeEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoAttrEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ProfileUpdateOfficePhoneErrorComponentDtoAttrEnum, ProfileUpdateOfficePhoneErrorComponentDtoCodeEnum, ProfileUpdatePersonalEmailErrorComponentDtoAttrEnum, ProfileUpdatePersonalEmailErrorComponentDtoCodeEnum, ProfileUpdatePersonalPhoneErrorComponentDtoAttrEnum, ProfileUpdatePersonalPhoneErrorComponentDtoCodeEnum, ProfileUpdateSkypeErrorComponentDtoAttrEnum, ProfileUpdateSkypeErrorComponentDtoCodeEnum, ProfileUpdateSlackIdErrorComponentDtoAttrEnum, ProfileUpdateSlackIdErrorComponentDtoCodeEnum, ProfileUpdateTimezoneErrorComponentDtoAttrEnum, ProfileUpdateTimezoneErrorComponentDtoCodeEnum, ProfileUpdateUpdatedByErrorComponentDtoAttrEnum, ProfileUpdateUpdatedByErrorComponentDtoCodeEnum, ProjectPrioritiesApiService, ProjectPrioritiesListColorErrorComponentDtoAttrEnum, ProjectPrioritiesListColorErrorComponentDtoCodeEnum, ProjectPrioritiesListColorInErrorComponentDtoAttrEnum, ProjectPrioritiesListColorInErrorComponentDtoCodeEnum, ProjectPrioritiesListIdErrorComponentDtoAttrEnum, ProjectPrioritiesListIdErrorComponentDtoCodeEnum, ProjectPrioritiesListIdInErrorComponentDtoAttrEnum, ProjectPrioritiesListIdInErrorComponentDtoCodeEnum, ProjectPrioritiesListNameErrorComponentDtoAttrEnum, ProjectPrioritiesListNameErrorComponentDtoCodeEnum, ProjectPrioritiesListNameInErrorComponentDtoAttrEnum, ProjectPrioritiesListNameInErrorComponentDtoCodeEnum, ProjectStatusEnumDto, ProjectsApiService, ProjectsListClientContactErrorComponentDtoAttrEnum, ProjectsListClientContactErrorComponentDtoCodeEnum, ProjectsListClientContactInErrorComponentDtoAttrEnum, ProjectsListClientContactInErrorComponentDtoCodeEnum, ProjectsListClientErrorComponentDtoAttrEnum, ProjectsListClientErrorComponentDtoCodeEnum, ProjectsListClientInErrorComponentDtoAttrEnum, ProjectsListClientInErrorComponentDtoCodeEnum, ProjectsListIdErrorComponentDtoAttrEnum, ProjectsListIdErrorComponentDtoCodeEnum, ProjectsListIdInErrorComponentDtoAttrEnum, ProjectsListIdInErrorComponentDtoCodeEnum, ProjectsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsListStatusErrorComponentDtoAttrEnum, ProjectsListStatusErrorComponentDtoCodeEnum, ProjectsListStatusInErrorComponentDtoAttrEnum, ProjectsListStatusInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientErrorComponentDtoAttrEnum, ProjectsWithStatsListClientErrorComponentDtoCodeEnum, ProjectsWithStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithStatsListIdErrorComponentDtoAttrEnum, ProjectsWithStatsListIdErrorComponentDtoCodeEnum, ProjectsWithStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusInErrorComponentDtoCodeEnum, RolesApiService, RolesCreateNameErrorComponentDtoAttrEnum, RolesCreateNameErrorComponentDtoCodeEnum, RolesCreateNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreateNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, RolesListIdErrorComponentDtoAttrEnum, RolesListIdErrorComponentDtoCodeEnum, RolesListIdInErrorComponentDtoAttrEnum, RolesListIdInErrorComponentDtoCodeEnum, RolesListPermissionsPermissionErrorComponentDtoAttrEnum, RolesListPermissionsPermissionErrorComponentDtoCodeEnum, RolesListPermissionsPermissionInErrorComponentDtoAttrEnum, RolesListPermissionsPermissionInErrorComponentDtoCodeEnum, RolesListPermissionsScopeErrorComponentDtoAttrEnum, RolesListPermissionsScopeErrorComponentDtoCodeEnum, RolesListPermissionsScopeInErrorComponentDtoAttrEnum, RolesListPermissionsScopeInErrorComponentDtoCodeEnum, RolesUpdateNameErrorComponentDtoAttrEnum, RolesUpdateNameErrorComponentDtoCodeEnum, RolesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, S3ApiService, S3GetParamsCreateConfigErrorComponentDtoAttrEnum, S3GetParamsCreateConfigErrorComponentDtoCodeEnum, S3GetParamsCreateContentLengthErrorComponentDtoAttrEnum, S3GetParamsCreateContentLengthErrorComponentDtoCodeEnum, S3GetParamsCreateContentTypeErrorComponentDtoAttrEnum, S3GetParamsCreateContentTypeErrorComponentDtoCodeEnum, S3GetParamsCreateFilenameErrorComponentDtoAttrEnum, S3GetParamsCreateFilenameErrorComponentDtoCodeEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoAttrEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoCodeEnum, ScopeEnumDto, SearchPeriodsApiService, SearchPeriodsListBranchInErrorComponentDtoAttrEnum, SearchPeriodsListBranchInErrorComponentDtoCodeEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, SearchPeriodsListStatusInErrorComponentDtoAttrEnum, SearchPeriodsListStatusInErrorComponentDtoCodeEnum, SearchPeriodsListTypeInErrorComponentDtoAttrEnum, SearchPeriodsListTypeInErrorComponentDtoCodeEnum, SearchPeriodsListUserBranchInErrorComponentDtoAttrEnum, SearchPeriodsListUserBranchInErrorComponentDtoCodeEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoAttrEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoCodeEnum, SearchPeriodsListUserInErrorComponentDtoAttrEnum, SearchPeriodsListUserInErrorComponentDtoCodeEnum, SearchPeriodsListUserStatusInErrorComponentDtoAttrEnum, SearchPeriodsListUserStatusInErrorComponentDtoCodeEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoAttrEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoCodeEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoAttrEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoCodeEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoAttrEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoCodeEnum, ServerErrorEnumDto, SsoApiService, SsoCodeExchangeCreateCodeErrorComponentDtoAttrEnum, SsoCodeExchangeCreateCodeErrorComponentDtoCodeEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoAttrEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoCodeEnum, SsoDebugCreateEmailErrorComponentDtoAttrEnum, SsoDebugCreateEmailErrorComponentDtoCodeEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateRedirectUriErrorComponentDtoAttrEnum, SsoStartCreateRedirectUriErrorComponentDtoCodeEnum, StateEnumDto, TasksApiService, TasksListAssigneeErrorComponentDtoAttrEnum, TasksListAssigneeErrorComponentDtoCodeEnum, TasksListAssigneeInErrorComponentDtoAttrEnum, TasksListAssigneeInErrorComponentDtoCodeEnum, TasksListComponentErrorComponentDtoAttrEnum, TasksListComponentErrorComponentDtoCodeEnum, TasksListComponentInErrorComponentDtoAttrEnum, TasksListComponentInErrorComponentDtoCodeEnum, TasksListCreatedByErrorComponentDtoAttrEnum, TasksListCreatedByErrorComponentDtoCodeEnum, TasksListCreatedByInErrorComponentDtoAttrEnum, TasksListCreatedByInErrorComponentDtoCodeEnum, TasksListIdErrorComponentDtoAttrEnum, TasksListIdErrorComponentDtoCodeEnum, TasksListIdInErrorComponentDtoAttrEnum, TasksListIdInErrorComponentDtoCodeEnum, TasksListPriorityErrorComponentDtoAttrEnum, TasksListPriorityErrorComponentDtoCodeEnum, TasksListPriorityInErrorComponentDtoAttrEnum, TasksListPriorityInErrorComponentDtoCodeEnum, TasksListProjectClientErrorComponentDtoAttrEnum, TasksListProjectClientErrorComponentDtoCodeEnum, TasksListProjectClientInErrorComponentDtoAttrEnum, TasksListProjectClientInErrorComponentDtoCodeEnum, TasksListProjectErrorComponentDtoAttrEnum, TasksListProjectErrorComponentDtoCodeEnum, TasksListProjectInErrorComponentDtoAttrEnum, TasksListProjectInErrorComponentDtoCodeEnum, TasksListSprintErrorComponentDtoAttrEnum, TasksListSprintErrorComponentDtoCodeEnum, TasksListSprintInErrorComponentDtoAttrEnum, TasksListSprintInErrorComponentDtoCodeEnum, TasksListStatusErrorComponentDtoAttrEnum, TasksListStatusErrorComponentDtoCodeEnum, TasksListStatusInErrorComponentDtoAttrEnum, TasksListStatusInErrorComponentDtoCodeEnum, TasksListUpdatedByErrorComponentDtoAttrEnum, TasksListUpdatedByErrorComponentDtoCodeEnum, TasksListUpdatedByInErrorComponentDtoAttrEnum, TasksListUpdatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentInErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentInErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdInErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdInErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityInErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectInErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintInErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintInErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusInErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusInErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoCodeEnum, TokenApiService, TokenRefreshCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenRefreshCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenRefreshCreateRefreshErrorComponentDtoAttrEnum, TokenRefreshCreateRefreshErrorComponentDtoCodeEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenVerifyCreateTokenErrorComponentDtoAttrEnum, TokenVerifyCreateTokenErrorComponentDtoCodeEnum, UserCapacitiesApiService, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdInErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdInErrorComponentDtoCodeEnum, UserCapacitiesListDateGteErrorComponentDtoAttrEnum, UserCapacitiesListDateGteErrorComponentDtoCodeEnum, UserCapacitiesListDateLteErrorComponentDtoAttrEnum, UserCapacitiesListDateLteErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoCodeEnum, UserCapacitiesListIdErrorComponentDtoAttrEnum, UserCapacitiesListIdErrorComponentDtoCodeEnum, UserCapacitiesListIdInErrorComponentDtoAttrEnum, UserCapacitiesListIdInErrorComponentDtoCodeEnum, UserCapacitiesListUserIdErrorComponentDtoAttrEnum, UserCapacitiesListUserIdErrorComponentDtoCodeEnum, UserCapacitiesListUserIdInErrorComponentDtoAttrEnum, UserCapacitiesListUserIdInErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoCodeEnum, UserLoginsApiService, UserLoginsListBranchErrorComponentDtoAttrEnum, UserLoginsListBranchErrorComponentDtoCodeEnum, UserLoginsListBranchInErrorComponentDtoAttrEnum, UserLoginsListBranchInErrorComponentDtoCodeEnum, UserLoginsListDepartmentErrorComponentDtoAttrEnum, UserLoginsListDepartmentErrorComponentDtoCodeEnum, UserLoginsListDepartmentInErrorComponentDtoAttrEnum, UserLoginsListDepartmentInErrorComponentDtoCodeEnum, UserLoginsListIdErrorComponentDtoAttrEnum, UserLoginsListIdErrorComponentDtoCodeEnum, UserLoginsListIdInErrorComponentDtoAttrEnum, UserLoginsListIdInErrorComponentDtoCodeEnum, UserLoginsListRoleErrorComponentDtoAttrEnum, UserLoginsListRoleErrorComponentDtoCodeEnum, UserLoginsListRoleInErrorComponentDtoAttrEnum, UserLoginsListRoleInErrorComponentDtoCodeEnum, UserLoginsListWorkTypeErrorComponentDtoAttrEnum, UserLoginsListWorkTypeErrorComponentDtoCodeEnum, UserLoginsListWorkTypeInErrorComponentDtoAttrEnum, UserLoginsListWorkTypeInErrorComponentDtoCodeEnum, UserLoginsUpdateEmailErrorComponentDtoAttrEnum, UserLoginsUpdateEmailErrorComponentDtoCodeEnum, UserLoginsUpdateIsStaffErrorComponentDtoAttrEnum, UserLoginsUpdateIsStaffErrorComponentDtoCodeEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserLoginsUpdateRoleErrorComponentDtoAttrEnum, UserLoginsUpdateRoleErrorComponentDtoCodeEnum, UserPeriodStatusEnumDto, UserPeriodTypeEnumDto, UserPeriodsApiService, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoCodeEnum, UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum, UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum, UserPeriodsCreateFileErrorComponentDtoAttrEnum, UserPeriodsCreateFileErrorComponentDtoCodeEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsCreateTypeErrorComponentDtoAttrEnum, UserPeriodsCreateTypeErrorComponentDtoCodeEnum, UserPeriodsCreateUserErrorComponentDtoAttrEnum, UserPeriodsCreateUserErrorComponentDtoCodeEnum, UserPeriodsListIdErrorComponentDtoAttrEnum, UserPeriodsListIdErrorComponentDtoCodeEnum, UserPeriodsListIdInErrorComponentDtoAttrEnum, UserPeriodsListIdInErrorComponentDtoCodeEnum, UserPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, UserPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, UserPeriodsListStatusErrorComponentDtoAttrEnum, UserPeriodsListStatusErrorComponentDtoCodeEnum, UserPeriodsListStatusInErrorComponentDtoAttrEnum, UserPeriodsListStatusInErrorComponentDtoCodeEnum, UserPeriodsListTypeErrorComponentDtoAttrEnum, UserPeriodsListTypeErrorComponentDtoCodeEnum, UserPeriodsListTypeInErrorComponentDtoAttrEnum, UserPeriodsListTypeInErrorComponentDtoCodeEnum, UserPeriodsListUserBranchIdInErrorComponentDtoAttrEnum, UserPeriodsListUserBranchIdInErrorComponentDtoCodeEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoAttrEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoCodeEnum, UserPeriodsListUserIdInErrorComponentDtoAttrEnum, UserPeriodsListUserIdInErrorComponentDtoCodeEnum, UserPeriodsListUserStatusErrorComponentDtoAttrEnum, UserPeriodsListUserStatusErrorComponentDtoCodeEnum, UserPeriodsListUserStatusInErrorComponentDtoAttrEnum, UserPeriodsListUserStatusInErrorComponentDtoCodeEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoCodeEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoCodeEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoAttrEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoCodeEnum, UserPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, UserPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, UserPeriodsUpdateFileErrorComponentDtoAttrEnum, UserPeriodsUpdateFileErrorComponentDtoCodeEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsUpdateTypeErrorComponentDtoAttrEnum, UserPeriodsUpdateTypeErrorComponentDtoCodeEnum, UserPeriodsUpdateUserErrorComponentDtoAttrEnum, UserPeriodsUpdateUserErrorComponentDtoCodeEnum, UserScoresApiService, UserScoresCreateCommentErrorComponentDtoAttrEnum, UserScoresCreateCommentErrorComponentDtoCodeEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserScoresCreateReceiverErrorComponentDtoAttrEnum, UserScoresCreateReceiverErrorComponentDtoCodeEnum, UserScoresCreateScoreErrorComponentDtoAttrEnum, UserScoresCreateScoreErrorComponentDtoCodeEnum, UserScoresListCommentIcontainsErrorComponentDtoAttrEnum, UserScoresListCommentIcontainsErrorComponentDtoCodeEnum, UserScoresListCreatedByErrorComponentDtoAttrEnum, UserScoresListCreatedByErrorComponentDtoCodeEnum, UserScoresListCreatedByInErrorComponentDtoAttrEnum, UserScoresListCreatedByInErrorComponentDtoCodeEnum, UserScoresListCreatedDateGteErrorComponentDtoAttrEnum, UserScoresListCreatedDateGteErrorComponentDtoCodeEnum, UserScoresListCreatedDateLteErrorComponentDtoAttrEnum, UserScoresListCreatedDateLteErrorComponentDtoCodeEnum, UserScoresListCreatedGteErrorComponentDtoAttrEnum, UserScoresListCreatedGteErrorComponentDtoCodeEnum, UserScoresListCreatedLteErrorComponentDtoAttrEnum, UserScoresListCreatedLteErrorComponentDtoCodeEnum, UserScoresListIdErrorComponentDtoAttrEnum, UserScoresListIdErrorComponentDtoCodeEnum, UserScoresListIdInErrorComponentDtoAttrEnum, UserScoresListIdInErrorComponentDtoCodeEnum, UserScoresListReceiverErrorComponentDtoAttrEnum, UserScoresListReceiverErrorComponentDtoCodeEnum, UserScoresListReceiverInErrorComponentDtoAttrEnum, UserScoresListReceiverInErrorComponentDtoCodeEnum, UserScoresListScoreErrorComponentDtoAttrEnum, UserScoresListScoreErrorComponentDtoCodeEnum, UserScoresListScoreInErrorComponentDtoAttrEnum, UserScoresListScoreInErrorComponentDtoCodeEnum, UserStatusEnumDto, UserTimezoneSettingApiService, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoAttrEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoCodeEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoAttrEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoCodeEnum, UserTimezoneSettingOrderingEnumDto, UserTimezonesApiService, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersApiService, UsersCreateAvatarErrorComponentDtoAttrEnum, UsersCreateAvatarErrorComponentDtoCodeEnum, UsersCreateBirthdayErrorComponentDtoAttrEnum, UsersCreateBirthdayErrorComponentDtoCodeEnum, UsersCreateBranchErrorComponentDtoAttrEnum, UsersCreateBranchErrorComponentDtoCodeEnum, UsersCreateCreatedByErrorComponentDtoAttrEnum, UsersCreateCreatedByErrorComponentDtoCodeEnum, UsersCreateDepartmentErrorComponentDtoAttrEnum, UsersCreateDepartmentErrorComponentDtoCodeEnum, UsersCreateDismissalReasonsErrorComponentDtoAttrEnum, UsersCreateDismissalReasonsErrorComponentDtoCodeEnum, UsersCreateEmailErrorComponentDtoAttrEnum, UsersCreateEmailErrorComponentDtoCodeEnum, UsersCreateFirstNameErrorComponentDtoAttrEnum, UsersCreateFirstNameErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayErrorComponentDtoCodeEnum, UsersCreateGithubUsernameErrorComponentDtoAttrEnum, UsersCreateGithubUsernameErrorComponentDtoCodeEnum, UsersCreateHomePhoneErrorComponentDtoAttrEnum, UsersCreateHomePhoneErrorComponentDtoCodeEnum, UsersCreateIsInternErrorComponentDtoAttrEnum, UsersCreateIsInternErrorComponentDtoCodeEnum, UsersCreateIsPartTimeErrorComponentDtoAttrEnum, UsersCreateIsPartTimeErrorComponentDtoCodeEnum, UsersCreateJiraAccountIdErrorComponentDtoAttrEnum, UsersCreateJiraAccountIdErrorComponentDtoCodeEnum, UsersCreateLastNameErrorComponentDtoAttrEnum, UsersCreateLastNameErrorComponentDtoCodeEnum, UsersCreateLastWorkingDayErrorComponentDtoAttrEnum, UsersCreateLastWorkingDayErrorComponentDtoCodeEnum, UsersCreateLocationErrorComponentDtoAttrEnum, UsersCreateLocationErrorComponentDtoCodeEnum, UsersCreateMiddleNameErrorComponentDtoAttrEnum, UsersCreateMiddleNameErrorComponentDtoCodeEnum, UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum, UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersCreateOfficePhoneErrorComponentDtoAttrEnum, UsersCreateOfficePhoneErrorComponentDtoCodeEnum, UsersCreateOnsiteErrorComponentDtoAttrEnum, UsersCreateOnsiteErrorComponentDtoCodeEnum, UsersCreatePersonalEmailErrorComponentDtoAttrEnum, UsersCreatePersonalEmailErrorComponentDtoCodeEnum, UsersCreatePersonalPhoneErrorComponentDtoAttrEnum, UsersCreatePersonalPhoneErrorComponentDtoCodeEnum, UsersCreateRecruitedByErrorComponentDtoAttrEnum, UsersCreateRecruitedByErrorComponentDtoCodeEnum, UsersCreateRoleErrorComponentDtoAttrEnum, UsersCreateRoleErrorComponentDtoCodeEnum, UsersCreateSkypeErrorComponentDtoAttrEnum, UsersCreateSkypeErrorComponentDtoCodeEnum, UsersCreateSlackIdErrorComponentDtoAttrEnum, UsersCreateSlackIdErrorComponentDtoCodeEnum, UsersCreateStatusErrorComponentDtoAttrEnum, UsersCreateStatusErrorComponentDtoCodeEnum, UsersCreateSuperviseesErrorComponentDtoAttrEnum, UsersCreateSuperviseesErrorComponentDtoCodeEnum, UsersCreateSupervisorsErrorComponentDtoAttrEnum, UsersCreateSupervisorsErrorComponentDtoCodeEnum, UsersCreateTimezoneErrorComponentDtoAttrEnum, UsersCreateTimezoneErrorComponentDtoCodeEnum, UsersCreateUpdatedByErrorComponentDtoAttrEnum, UsersCreateUpdatedByErrorComponentDtoCodeEnum, UsersCreateUtilizationPercentErrorComponentDtoAttrEnum, UsersCreateUtilizationPercentErrorComponentDtoCodeEnum, UsersCreateVendorErrorComponentDtoAttrEnum, UsersCreateVendorErrorComponentDtoCodeEnum, UsersCreateWorkTypeErrorComponentDtoAttrEnum, UsersCreateWorkTypeErrorComponentDtoCodeEnum, UsersListBranchErrorComponentDtoAttrEnum, UsersListBranchErrorComponentDtoCodeEnum, UsersListBranchInErrorComponentDtoAttrEnum, UsersListBranchInErrorComponentDtoCodeEnum, UsersListDepartmentErrorComponentDtoAttrEnum, UsersListDepartmentErrorComponentDtoCodeEnum, UsersListDepartmentInErrorComponentDtoAttrEnum, UsersListDepartmentInErrorComponentDtoCodeEnum, UsersListIdErrorComponentDtoAttrEnum, UsersListIdErrorComponentDtoCodeEnum, UsersListIdInErrorComponentDtoAttrEnum, UsersListIdInErrorComponentDtoCodeEnum, UsersListRoleErrorComponentDtoAttrEnum, UsersListRoleErrorComponentDtoCodeEnum, UsersListRoleInErrorComponentDtoAttrEnum, UsersListRoleInErrorComponentDtoCodeEnum, UsersListStatusErrorComponentDtoAttrEnum, UsersListStatusErrorComponentDtoCodeEnum, UsersListStatusInErrorComponentDtoAttrEnum, UsersListStatusInErrorComponentDtoCodeEnum, UsersListSuperviseesIdInErrorComponentDtoAttrEnum, UsersListSuperviseesIdInErrorComponentDtoCodeEnum, UsersListSupervisorsIdInErrorComponentDtoAttrEnum, UsersListSupervisorsIdInErrorComponentDtoCodeEnum, UsersListWorkTypeErrorComponentDtoAttrEnum, UsersListWorkTypeErrorComponentDtoCodeEnum, UsersListWorkTypeInErrorComponentDtoAttrEnum, UsersListWorkTypeInErrorComponentDtoCodeEnum, UsersUpdateAvatarErrorComponentDtoAttrEnum, UsersUpdateAvatarErrorComponentDtoCodeEnum, UsersUpdateBirthdayErrorComponentDtoAttrEnum, UsersUpdateBirthdayErrorComponentDtoCodeEnum, UsersUpdateBranchErrorComponentDtoAttrEnum, UsersUpdateBranchErrorComponentDtoCodeEnum, UsersUpdateCreatedByErrorComponentDtoAttrEnum, UsersUpdateCreatedByErrorComponentDtoCodeEnum, UsersUpdateDepartmentErrorComponentDtoAttrEnum, UsersUpdateDepartmentErrorComponentDtoCodeEnum, UsersUpdateDismissalReasonsErrorComponentDtoAttrEnum, UsersUpdateDismissalReasonsErrorComponentDtoCodeEnum, UsersUpdateEmailErrorComponentDtoAttrEnum, UsersUpdateEmailErrorComponentDtoCodeEnum, UsersUpdateFirstNameErrorComponentDtoAttrEnum, UsersUpdateFirstNameErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayErrorComponentDtoCodeEnum, UsersUpdateGithubUsernameErrorComponentDtoAttrEnum, UsersUpdateGithubUsernameErrorComponentDtoCodeEnum, UsersUpdateHomePhoneErrorComponentDtoAttrEnum, UsersUpdateHomePhoneErrorComponentDtoCodeEnum, UsersUpdateIsInternErrorComponentDtoAttrEnum, UsersUpdateIsInternErrorComponentDtoCodeEnum, UsersUpdateIsPartTimeErrorComponentDtoAttrEnum, UsersUpdateIsPartTimeErrorComponentDtoCodeEnum, UsersUpdateJiraAccountIdErrorComponentDtoAttrEnum, UsersUpdateJiraAccountIdErrorComponentDtoCodeEnum, UsersUpdateLastNameErrorComponentDtoAttrEnum, UsersUpdateLastNameErrorComponentDtoCodeEnum, UsersUpdateLastWorkingDayErrorComponentDtoAttrEnum, UsersUpdateLastWorkingDayErrorComponentDtoCodeEnum, UsersUpdateLocationErrorComponentDtoAttrEnum, UsersUpdateLocationErrorComponentDtoCodeEnum, UsersUpdateMiddleNameErrorComponentDtoAttrEnum, UsersUpdateMiddleNameErrorComponentDtoCodeEnum, UsersUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UsersUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UsersUpdateOfficePhoneErrorComponentDtoAttrEnum, UsersUpdateOfficePhoneErrorComponentDtoCodeEnum, UsersUpdateOnsiteErrorComponentDtoAttrEnum, UsersUpdateOnsiteErrorComponentDtoCodeEnum, UsersUpdatePersonalEmailErrorComponentDtoAttrEnum, UsersUpdatePersonalEmailErrorComponentDtoCodeEnum, UsersUpdatePersonalPhoneErrorComponentDtoAttrEnum, UsersUpdatePersonalPhoneErrorComponentDtoCodeEnum, UsersUpdateRecruitedByErrorComponentDtoAttrEnum, UsersUpdateRecruitedByErrorComponentDtoCodeEnum, UsersUpdateRoleErrorComponentDtoAttrEnum, UsersUpdateRoleErrorComponentDtoCodeEnum, UsersUpdateSkypeErrorComponentDtoAttrEnum, UsersUpdateSkypeErrorComponentDtoCodeEnum, UsersUpdateSlackIdErrorComponentDtoAttrEnum, UsersUpdateSlackIdErrorComponentDtoCodeEnum, UsersUpdateStatusErrorComponentDtoAttrEnum, UsersUpdateStatusErrorComponentDtoCodeEnum, UsersUpdateSuperviseesErrorComponentDtoAttrEnum, UsersUpdateSuperviseesErrorComponentDtoCodeEnum, UsersUpdateSupervisorsErrorComponentDtoAttrEnum, UsersUpdateSupervisorsErrorComponentDtoCodeEnum, UsersUpdateTimezoneErrorComponentDtoAttrEnum, UsersUpdateTimezoneErrorComponentDtoCodeEnum, UsersUpdateUpdatedByErrorComponentDtoAttrEnum, UsersUpdateUpdatedByErrorComponentDtoCodeEnum, UsersUpdateUtilizationPercentErrorComponentDtoAttrEnum, UsersUpdateUtilizationPercentErrorComponentDtoCodeEnum, UsersUpdateVendorErrorComponentDtoAttrEnum, UsersUpdateVendorErrorComponentDtoCodeEnum, UsersUpdateWorkTypeErrorComponentDtoAttrEnum, UsersUpdateWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchInErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchInErrorComponentDtoCodeEnum, UsersUtilizationChartListDateGteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateGteErrorComponentDtoCodeEnum, UsersUtilizationChartListDateLteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateLteErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoCodeEnum, UsersUtilizationChartListIdErrorComponentDtoAttrEnum, UsersUtilizationChartListIdErrorComponentDtoCodeEnum, UsersUtilizationChartListIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListIsTotalErrorComponentDtoAttrEnum, UsersUtilizationChartListIsTotalErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleInErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleInErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusInErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusInErrorComponentDtoCodeEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoAttrEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoCodeEnum, ValidationErrorEnumDto, VendorsApiService, VendorsCreateNameErrorComponentDtoAttrEnum, VendorsCreateNameErrorComponentDtoCodeEnum, VendorsCreateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsCreateNonFieldErrorsErrorComponentDtoCodeEnum, VendorsListIdErrorComponentDtoAttrEnum, VendorsListIdErrorComponentDtoCodeEnum, VendorsListIdInErrorComponentDtoAttrEnum, VendorsListIdInErrorComponentDtoCodeEnum, VendorsUpdateNameErrorComponentDtoAttrEnum, VendorsUpdateNameErrorComponentDtoCodeEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WhoAmIApiService, WorkTypesApiService, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateDepartmentErrorComponentDtoAttrEnum, WorkTypesCreateDepartmentErrorComponentDtoCodeEnum, WorkTypesCreateNameErrorComponentDtoAttrEnum, WorkTypesCreateNameErrorComponentDtoCodeEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateParentErrorComponentDtoAttrEnum, WorkTypesCreateParentErrorComponentDtoCodeEnum, WorkTypesListDepartmentErrorComponentDtoAttrEnum, WorkTypesListDepartmentErrorComponentDtoCodeEnum, WorkTypesListDepartmentInErrorComponentDtoAttrEnum, WorkTypesListDepartmentInErrorComponentDtoCodeEnum, WorkTypesListIdErrorComponentDtoAttrEnum, WorkTypesListIdErrorComponentDtoCodeEnum, WorkTypesListIdInErrorComponentDtoAttrEnum, WorkTypesListIdInErrorComponentDtoCodeEnum, WorkTypesListParentErrorComponentDtoAttrEnum, WorkTypesListParentErrorComponentDtoCodeEnum, WorkTypesListParentInErrorComponentDtoAttrEnum, WorkTypesListParentInErrorComponentDtoCodeEnum, WorkTypesUpdateDepartmentErrorComponentDtoAttrEnum, WorkTypesUpdateDepartmentErrorComponentDtoCodeEnum, WorkTypesUpdateNameErrorComponentDtoAttrEnum, WorkTypesUpdateNameErrorComponentDtoCodeEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesUpdateParentErrorComponentDtoAttrEnum, WorkTypesUpdateParentErrorComponentDtoCodeEnum };
27214
+ export { APIS, ApiModule, BASE_PATH, BillingFrequencyEnumDto, BillingMethodEnumDto, BillingTypeEnumDto, BranchPeriodTypeEnumDto, BranchPeriodsApiService, BranchPeriodsCreateBranchErrorComponentDtoAttrEnum, BranchPeriodsCreateBranchErrorComponentDtoCodeEnum, BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsCreateTitleErrorComponentDtoAttrEnum, BranchPeriodsCreateTitleErrorComponentDtoCodeEnum, BranchPeriodsCreateTypeErrorComponentDtoAttrEnum, BranchPeriodsCreateTypeErrorComponentDtoCodeEnum, BranchPeriodsUpdateBranchErrorComponentDtoAttrEnum, BranchPeriodsUpdateBranchErrorComponentDtoCodeEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsUpdateTitleErrorComponentDtoAttrEnum, BranchPeriodsUpdateTitleErrorComponentDtoCodeEnum, BranchPeriodsUpdateTypeErrorComponentDtoAttrEnum, BranchPeriodsUpdateTypeErrorComponentDtoCodeEnum, BranchesApiService, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreateAddress1ErrorComponentDtoAttrEnum, BranchesCreateAddress1ErrorComponentDtoCodeEnum, BranchesCreateAddress2ErrorComponentDtoAttrEnum, BranchesCreateAddress2ErrorComponentDtoCodeEnum, BranchesCreateCeoErrorComponentDtoAttrEnum, BranchesCreateCeoErrorComponentDtoCodeEnum, BranchesCreateCodeErrorComponentDtoAttrEnum, BranchesCreateCodeErrorComponentDtoCodeEnum, BranchesCreateCountryErrorComponentDtoAttrEnum, BranchesCreateCountryErrorComponentDtoCodeEnum, BranchesCreateHrEmailErrorComponentDtoAttrEnum, BranchesCreateHrEmailErrorComponentDtoCodeEnum, BranchesCreateIconErrorComponentDtoAttrEnum, BranchesCreateIconErrorComponentDtoCodeEnum, BranchesCreateIsOverseaErrorComponentDtoAttrEnum, BranchesCreateIsOverseaErrorComponentDtoCodeEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesCreateNameErrorComponentDtoAttrEnum, BranchesCreateNameErrorComponentDtoCodeEnum, BranchesCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreatePostalCodeErrorComponentDtoAttrEnum, BranchesCreatePostalCodeErrorComponentDtoCodeEnum, BranchesCreateStateErrorComponentDtoAttrEnum, BranchesCreateStateErrorComponentDtoCodeEnum, BranchesCreateTimezoneErrorComponentDtoAttrEnum, BranchesCreateTimezoneErrorComponentDtoCodeEnum, BranchesCreateVacationDaysCountErrorComponentDtoAttrEnum, BranchesCreateVacationDaysCountErrorComponentDtoCodeEnum, BranchesCreateVacationPeriodErrorComponentDtoAttrEnum, BranchesCreateVacationPeriodErrorComponentDtoCodeEnum, BranchesListIdErrorComponentDtoAttrEnum, BranchesListIdErrorComponentDtoCodeEnum, BranchesListIdInErrorComponentDtoAttrEnum, BranchesListIdInErrorComponentDtoCodeEnum, BranchesUpdateAddress1ErrorComponentDtoAttrEnum, BranchesUpdateAddress1ErrorComponentDtoCodeEnum, BranchesUpdateAddress2ErrorComponentDtoAttrEnum, BranchesUpdateAddress2ErrorComponentDtoCodeEnum, BranchesUpdateCeoErrorComponentDtoAttrEnum, BranchesUpdateCeoErrorComponentDtoCodeEnum, BranchesUpdateCodeErrorComponentDtoAttrEnum, BranchesUpdateCodeErrorComponentDtoCodeEnum, BranchesUpdateCountryErrorComponentDtoAttrEnum, BranchesUpdateCountryErrorComponentDtoCodeEnum, BranchesUpdateHrEmailErrorComponentDtoAttrEnum, BranchesUpdateHrEmailErrorComponentDtoCodeEnum, BranchesUpdateIconErrorComponentDtoAttrEnum, BranchesUpdateIconErrorComponentDtoCodeEnum, BranchesUpdateIsOverseaErrorComponentDtoAttrEnum, BranchesUpdateIsOverseaErrorComponentDtoCodeEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesUpdateNameErrorComponentDtoAttrEnum, BranchesUpdateNameErrorComponentDtoCodeEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesUpdatePostalCodeErrorComponentDtoAttrEnum, BranchesUpdatePostalCodeErrorComponentDtoCodeEnum, BranchesUpdateStateErrorComponentDtoAttrEnum, BranchesUpdateStateErrorComponentDtoCodeEnum, BranchesUpdateTimezoneErrorComponentDtoAttrEnum, BranchesUpdateTimezoneErrorComponentDtoCodeEnum, BranchesUpdateVacationDaysCountErrorComponentDtoAttrEnum, BranchesUpdateVacationDaysCountErrorComponentDtoCodeEnum, BranchesUpdateVacationPeriodErrorComponentDtoAttrEnum, BranchesUpdateVacationPeriodErrorComponentDtoCodeEnum, BranchesUsersStatsListIdErrorComponentDtoAttrEnum, BranchesUsersStatsListIdErrorComponentDtoCodeEnum, BranchesUsersStatsListIdInErrorComponentDtoAttrEnum, BranchesUsersStatsListIdInErrorComponentDtoCodeEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoAttrEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoCodeEnum, COLLECTION_FORMATS, ClientErrorEnumDto, ClientNotesApiService, ClientNotesListClientErrorComponentDtoAttrEnum, ClientNotesListClientErrorComponentDtoCodeEnum, ClientNotesListClientInErrorComponentDtoAttrEnum, ClientNotesListClientInErrorComponentDtoCodeEnum, ClientNotesListIdErrorComponentDtoAttrEnum, ClientNotesListIdErrorComponentDtoCodeEnum, ClientNotesListIdInErrorComponentDtoAttrEnum, ClientNotesListIdInErrorComponentDtoCodeEnum, ClientStatusEnumDto, ClientsApiService, ClientsListAccountManagerErrorComponentDtoAttrEnum, ClientsListAccountManagerErrorComponentDtoCodeEnum, ClientsListAccountManagerInErrorComponentDtoAttrEnum, ClientsListAccountManagerInErrorComponentDtoCodeEnum, ClientsListAddress1ErrorComponentDtoAttrEnum, ClientsListAddress1ErrorComponentDtoCodeEnum, ClientsListAddress1InErrorComponentDtoAttrEnum, ClientsListAddress1InErrorComponentDtoCodeEnum, ClientsListAddress2ErrorComponentDtoAttrEnum, ClientsListAddress2ErrorComponentDtoCodeEnum, ClientsListAddress2InErrorComponentDtoAttrEnum, ClientsListAddress2InErrorComponentDtoCodeEnum, ClientsListBillingAddress1ErrorComponentDtoAttrEnum, ClientsListBillingAddress1ErrorComponentDtoCodeEnum, ClientsListBillingAddress1InErrorComponentDtoAttrEnum, ClientsListBillingAddress1InErrorComponentDtoCodeEnum, ClientsListBillingAddress2ErrorComponentDtoAttrEnum, ClientsListBillingAddress2ErrorComponentDtoCodeEnum, ClientsListBillingAddress2InErrorComponentDtoAttrEnum, ClientsListBillingAddress2InErrorComponentDtoCodeEnum, ClientsListBillingCityErrorComponentDtoAttrEnum, ClientsListBillingCityErrorComponentDtoCodeEnum, ClientsListBillingCityInErrorComponentDtoAttrEnum, ClientsListBillingCityInErrorComponentDtoCodeEnum, ClientsListBillingCountryErrorComponentDtoAttrEnum, ClientsListBillingCountryErrorComponentDtoCodeEnum, ClientsListBillingCountryInErrorComponentDtoAttrEnum, ClientsListBillingCountryInErrorComponentDtoCodeEnum, ClientsListBillingMethodErrorComponentDtoAttrEnum, ClientsListBillingMethodErrorComponentDtoCodeEnum, ClientsListBillingMethodInErrorComponentDtoAttrEnum, ClientsListBillingMethodInErrorComponentDtoCodeEnum, ClientsListBillingNotesContainsErrorComponentDtoAttrEnum, ClientsListBillingNotesContainsErrorComponentDtoCodeEnum, ClientsListBillingNotesErrorComponentDtoAttrEnum, ClientsListBillingNotesErrorComponentDtoCodeEnum, ClientsListBillingNotesInErrorComponentDtoAttrEnum, ClientsListBillingNotesInErrorComponentDtoCodeEnum, ClientsListBillingStateErrorComponentDtoAttrEnum, ClientsListBillingStateErrorComponentDtoCodeEnum, ClientsListBillingStateInErrorComponentDtoAttrEnum, ClientsListBillingStateInErrorComponentDtoCodeEnum, ClientsListBillingZipErrorComponentDtoAttrEnum, ClientsListBillingZipErrorComponentDtoCodeEnum, ClientsListBillingZipInErrorComponentDtoAttrEnum, ClientsListBillingZipInErrorComponentDtoCodeEnum, ClientsListCityErrorComponentDtoAttrEnum, ClientsListCityErrorComponentDtoCodeEnum, ClientsListCityInErrorComponentDtoAttrEnum, ClientsListCityInErrorComponentDtoCodeEnum, ClientsListContractUntilGteErrorComponentDtoAttrEnum, ClientsListContractUntilGteErrorComponentDtoCodeEnum, ClientsListContractUntilLteErrorComponentDtoAttrEnum, ClientsListContractUntilLteErrorComponentDtoCodeEnum, ClientsListCountryErrorComponentDtoAttrEnum, ClientsListCountryErrorComponentDtoCodeEnum, ClientsListCountryInErrorComponentDtoAttrEnum, ClientsListCountryInErrorComponentDtoCodeEnum, ClientsListCreatedByErrorComponentDtoAttrEnum, ClientsListCreatedByErrorComponentDtoCodeEnum, ClientsListCreatedByInErrorComponentDtoAttrEnum, ClientsListCreatedByInErrorComponentDtoCodeEnum, ClientsListIdErrorComponentDtoAttrEnum, ClientsListIdErrorComponentDtoCodeEnum, ClientsListIdInErrorComponentDtoAttrEnum, ClientsListIdInErrorComponentDtoCodeEnum, ClientsListNotesContainsErrorComponentDtoAttrEnum, ClientsListNotesContainsErrorComponentDtoCodeEnum, ClientsListNotesErrorComponentDtoAttrEnum, ClientsListNotesErrorComponentDtoCodeEnum, ClientsListNotesInErrorComponentDtoAttrEnum, ClientsListNotesInErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsListQbClientIdErrorComponentDtoAttrEnum, ClientsListQbClientIdErrorComponentDtoCodeEnum, ClientsListQbClientIdInErrorComponentDtoAttrEnum, ClientsListQbClientIdInErrorComponentDtoCodeEnum, ClientsListStateErrorComponentDtoAttrEnum, ClientsListStateErrorComponentDtoCodeEnum, ClientsListStateInErrorComponentDtoAttrEnum, ClientsListStateInErrorComponentDtoCodeEnum, ClientsListStatusErrorComponentDtoAttrEnum, ClientsListStatusErrorComponentDtoCodeEnum, ClientsListStatusInErrorComponentDtoAttrEnum, ClientsListStatusInErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsListUpdatedByErrorComponentDtoAttrEnum, ClientsListUpdatedByErrorComponentDtoCodeEnum, ClientsListUpdatedByInErrorComponentDtoAttrEnum, ClientsListUpdatedByInErrorComponentDtoCodeEnum, ClientsListWebsiteErrorComponentDtoAttrEnum, ClientsListWebsiteErrorComponentDtoCodeEnum, ClientsListWebsiteInErrorComponentDtoAttrEnum, ClientsListWebsiteInErrorComponentDtoCodeEnum, ClientsListZipErrorComponentDtoAttrEnum, ClientsListZipErrorComponentDtoCodeEnum, ClientsListZipInErrorComponentDtoAttrEnum, ClientsListZipInErrorComponentDtoCodeEnum, ClientsListZohoAccountIdErrorComponentDtoAttrEnum, ClientsListZohoAccountIdErrorComponentDtoCodeEnum, ClientsListZohoAccountIdInErrorComponentDtoAttrEnum, ClientsListZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ConfigEnumDto, Configuration, DepartmentsApiService, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateColorErrorComponentDtoAttrEnum, DepartmentsCreateColorErrorComponentDtoCodeEnum, DepartmentsCreateNameErrorComponentDtoAttrEnum, DepartmentsCreateNameErrorComponentDtoCodeEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateWorkTypesErrorComponentDtoAttrEnum, DepartmentsCreateWorkTypesErrorComponentDtoCodeEnum, DepartmentsListIdErrorComponentDtoAttrEnum, DepartmentsListIdErrorComponentDtoCodeEnum, DepartmentsListIdInErrorComponentDtoAttrEnum, DepartmentsListIdInErrorComponentDtoCodeEnum, DepartmentsListNameErrorComponentDtoAttrEnum, DepartmentsListNameErrorComponentDtoCodeEnum, DepartmentsListNameInErrorComponentDtoAttrEnum, DepartmentsListNameInErrorComponentDtoCodeEnum, DepartmentsListWorkTypesIdInErrorComponentDtoAttrEnum, DepartmentsListWorkTypesIdInErrorComponentDtoCodeEnum, DepartmentsUpdateColorErrorComponentDtoAttrEnum, DepartmentsUpdateColorErrorComponentDtoCodeEnum, DepartmentsUpdateNameErrorComponentDtoAttrEnum, DepartmentsUpdateNameErrorComponentDtoCodeEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsUpdateWorkTypesErrorComponentDtoAttrEnum, DepartmentsUpdateWorkTypesErrorComponentDtoCodeEnum, DismissalReasonsApiService, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsCreateNameErrorComponentDtoAttrEnum, DismissalReasonsCreateNameErrorComponentDtoCodeEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsListIdErrorComponentDtoAttrEnum, DismissalReasonsListIdErrorComponentDtoCodeEnum, DismissalReasonsListIdInErrorComponentDtoAttrEnum, DismissalReasonsListIdInErrorComponentDtoCodeEnum, DismissalReasonsListNameErrorComponentDtoAttrEnum, DismissalReasonsListNameErrorComponentDtoCodeEnum, DismissalReasonsListNameInErrorComponentDtoAttrEnum, DismissalReasonsListNameInErrorComponentDtoCodeEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsUpdateNameErrorComponentDtoAttrEnum, DismissalReasonsUpdateNameErrorComponentDtoCodeEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ErrorCode401EnumDto, ErrorCode403EnumDto, ErrorCode404EnumDto, ErrorCode405EnumDto, ErrorCode406EnumDto, ErrorCode415EnumDto, ErrorCode500EnumDto, ExportStatusEnumDto, ExportUsersApiService, ExportUsersStartCreateFileFormatErrorComponentDtoAttrEnum, ExportUsersStartCreateFileFormatErrorComponentDtoCodeEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, FileFormatEnumDto, GroupEnumDto, JiraClientApiService, JiraClientCreateProjectCreateInstanceErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateInstanceErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoCodeEnum, JiraInstancesApiService, JobTypeEnumDto, JobsApiService, JobsBillableChartListBilledByErrorComponentDtoAttrEnum, JobsBillableChartListBilledByErrorComponentDtoCodeEnum, JobsBillableChartListBilledByInErrorComponentDtoAttrEnum, JobsBillableChartListBilledByInErrorComponentDtoCodeEnum, JobsBillableChartListBranchErrorComponentDtoAttrEnum, JobsBillableChartListBranchErrorComponentDtoCodeEnum, JobsBillableChartListBranchInErrorComponentDtoAttrEnum, JobsBillableChartListBranchInErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByInErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByInErrorComponentDtoCodeEnum, JobsBillableChartListDateGteErrorComponentDtoAttrEnum, JobsBillableChartListDateGteErrorComponentDtoCodeEnum, JobsBillableChartListDateLteErrorComponentDtoAttrEnum, JobsBillableChartListDateLteErrorComponentDtoCodeEnum, JobsBillableChartListIdErrorComponentDtoAttrEnum, JobsBillableChartListIdErrorComponentDtoCodeEnum, JobsBillableChartListIdInErrorComponentDtoAttrEnum, JobsBillableChartListIdInErrorComponentDtoCodeEnum, JobsBillableChartListTaskErrorComponentDtoAttrEnum, JobsBillableChartListTaskErrorComponentDtoCodeEnum, JobsBillableChartListTaskInErrorComponentDtoAttrEnum, JobsBillableChartListTaskInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectInErrorComponentDtoCodeEnum, JobsBillableChartListTimeSpanErrorComponentDtoAttrEnum, JobsBillableChartListTimeSpanErrorComponentDtoCodeEnum, JobsBillableChartListTypeErrorComponentDtoAttrEnum, JobsBillableChartListTypeErrorComponentDtoCodeEnum, JobsBillableChartListTypeInErrorComponentDtoAttrEnum, JobsBillableChartListTypeInErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByInErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByInErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeInErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeInErrorComponentDtoCodeEnum, JobsListBilledByErrorComponentDtoAttrEnum, JobsListBilledByErrorComponentDtoCodeEnum, JobsListBilledByInErrorComponentDtoAttrEnum, JobsListBilledByInErrorComponentDtoCodeEnum, JobsListBranchErrorComponentDtoAttrEnum, JobsListBranchErrorComponentDtoCodeEnum, JobsListBranchInErrorComponentDtoAttrEnum, JobsListBranchInErrorComponentDtoCodeEnum, JobsListCreatedByErrorComponentDtoAttrEnum, JobsListCreatedByErrorComponentDtoCodeEnum, JobsListCreatedByInErrorComponentDtoAttrEnum, JobsListCreatedByInErrorComponentDtoCodeEnum, JobsListDateGteErrorComponentDtoAttrEnum, JobsListDateGteErrorComponentDtoCodeEnum, JobsListDateLteErrorComponentDtoAttrEnum, JobsListDateLteErrorComponentDtoCodeEnum, JobsListIdErrorComponentDtoAttrEnum, JobsListIdErrorComponentDtoCodeEnum, JobsListIdInErrorComponentDtoAttrEnum, JobsListIdInErrorComponentDtoCodeEnum, JobsListTaskErrorComponentDtoAttrEnum, JobsListTaskErrorComponentDtoCodeEnum, JobsListTaskInErrorComponentDtoAttrEnum, JobsListTaskInErrorComponentDtoCodeEnum, JobsListTaskProjectClientErrorComponentDtoAttrEnum, JobsListTaskProjectClientErrorComponentDtoCodeEnum, JobsListTaskProjectClientInErrorComponentDtoAttrEnum, JobsListTaskProjectClientInErrorComponentDtoCodeEnum, JobsListTaskProjectErrorComponentDtoAttrEnum, JobsListTaskProjectErrorComponentDtoCodeEnum, JobsListTaskProjectInErrorComponentDtoAttrEnum, JobsListTaskProjectInErrorComponentDtoCodeEnum, JobsListTypeErrorComponentDtoAttrEnum, JobsListTypeErrorComponentDtoCodeEnum, JobsListTypeInErrorComponentDtoAttrEnum, JobsListTypeInErrorComponentDtoCodeEnum, JobsListUpdatedByErrorComponentDtoAttrEnum, JobsListUpdatedByErrorComponentDtoCodeEnum, JobsListUpdatedByInErrorComponentDtoAttrEnum, JobsListUpdatedByInErrorComponentDtoCodeEnum, JobsListWorkTypeErrorComponentDtoAttrEnum, JobsListWorkTypeErrorComponentDtoCodeEnum, JobsListWorkTypeInErrorComponentDtoAttrEnum, JobsListWorkTypeInErrorComponentDtoCodeEnum, JobsProductionChartListBilledByErrorComponentDtoAttrEnum, JobsProductionChartListBilledByErrorComponentDtoCodeEnum, JobsProductionChartListBilledByInErrorComponentDtoAttrEnum, JobsProductionChartListBilledByInErrorComponentDtoCodeEnum, JobsProductionChartListBranchErrorComponentDtoAttrEnum, JobsProductionChartListBranchErrorComponentDtoCodeEnum, JobsProductionChartListBranchInErrorComponentDtoAttrEnum, JobsProductionChartListBranchInErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByInErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByInErrorComponentDtoCodeEnum, JobsProductionChartListDateGteErrorComponentDtoAttrEnum, JobsProductionChartListDateGteErrorComponentDtoCodeEnum, JobsProductionChartListDateLteErrorComponentDtoAttrEnum, JobsProductionChartListDateLteErrorComponentDtoCodeEnum, JobsProductionChartListIdErrorComponentDtoAttrEnum, JobsProductionChartListIdErrorComponentDtoCodeEnum, JobsProductionChartListIdInErrorComponentDtoAttrEnum, JobsProductionChartListIdInErrorComponentDtoCodeEnum, JobsProductionChartListTaskErrorComponentDtoAttrEnum, JobsProductionChartListTaskErrorComponentDtoCodeEnum, JobsProductionChartListTaskInErrorComponentDtoAttrEnum, JobsProductionChartListTaskInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectInErrorComponentDtoCodeEnum, JobsProductionChartListTimeSpanErrorComponentDtoAttrEnum, JobsProductionChartListTimeSpanErrorComponentDtoCodeEnum, JobsProductionChartListTypeErrorComponentDtoAttrEnum, JobsProductionChartListTypeErrorComponentDtoCodeEnum, JobsProductionChartListTypeInErrorComponentDtoAttrEnum, JobsProductionChartListTypeInErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByInErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByInErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeInErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeInErrorComponentDtoCodeEnum, LocationsApiService, LocationsCreateIconErrorComponentDtoAttrEnum, LocationsCreateIconErrorComponentDtoCodeEnum, LocationsCreateNameErrorComponentDtoAttrEnum, LocationsCreateNameErrorComponentDtoCodeEnum, LocationsCreateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsCreateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsCreateTimezoneErrorComponentDtoAttrEnum, LocationsCreateTimezoneErrorComponentDtoCodeEnum, LocationsListIdErrorComponentDtoAttrEnum, LocationsListIdErrorComponentDtoCodeEnum, LocationsListIdInErrorComponentDtoAttrEnum, LocationsListIdInErrorComponentDtoCodeEnum, LocationsListNameErrorComponentDtoAttrEnum, LocationsListNameErrorComponentDtoCodeEnum, LocationsListNameInErrorComponentDtoAttrEnum, LocationsListNameInErrorComponentDtoCodeEnum, LocationsListTimezoneErrorComponentDtoAttrEnum, LocationsListTimezoneErrorComponentDtoCodeEnum, LocationsListTimezoneInErrorComponentDtoAttrEnum, LocationsListTimezoneInErrorComponentDtoCodeEnum, LocationsUpdateIconErrorComponentDtoAttrEnum, LocationsUpdateIconErrorComponentDtoCodeEnum, LocationsUpdateNameErrorComponentDtoAttrEnum, LocationsUpdateNameErrorComponentDtoCodeEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsUpdateTimezoneErrorComponentDtoAttrEnum, LocationsUpdateTimezoneErrorComponentDtoCodeEnum, NotificationTypeEnumDto, NotificationsApiService, NotificationsListCreatedGtErrorComponentDtoAttrEnum, NotificationsListCreatedGtErrorComponentDtoCodeEnum, NotificationsListCreatedGteErrorComponentDtoAttrEnum, NotificationsListCreatedGteErrorComponentDtoCodeEnum, NotificationsListCreatedLtErrorComponentDtoAttrEnum, NotificationsListCreatedLtErrorComponentDtoCodeEnum, NotificationsListCreatedLteErrorComponentDtoAttrEnum, NotificationsListCreatedLteErrorComponentDtoCodeEnum, NotificationsListIdErrorComponentDtoAttrEnum, NotificationsListIdErrorComponentDtoCodeEnum, NotificationsListIdGtErrorComponentDtoAttrEnum, NotificationsListIdGtErrorComponentDtoCodeEnum, NotificationsListIdGteErrorComponentDtoAttrEnum, NotificationsListIdGteErrorComponentDtoCodeEnum, NotificationsListIdInErrorComponentDtoAttrEnum, NotificationsListIdInErrorComponentDtoCodeEnum, NotificationsListIdLtErrorComponentDtoAttrEnum, NotificationsListIdLtErrorComponentDtoCodeEnum, NotificationsListIdLteErrorComponentDtoAttrEnum, NotificationsListIdLteErrorComponentDtoCodeEnum, NotificationsListTypeErrorComponentDtoAttrEnum, NotificationsListTypeErrorComponentDtoCodeEnum, NotificationsListTypeInErrorComponentDtoAttrEnum, NotificationsListTypeInErrorComponentDtoCodeEnum, ParseErrorCodeEnumDto, PeriodModelEnumDto, PeriodTypeEnumDto, PermissionDataApiService, PermissionEnumDto, PriorityEnumDto, ProfileApiService, ProfileUpdateAvatarErrorComponentDtoAttrEnum, ProfileUpdateAvatarErrorComponentDtoCodeEnum, ProfileUpdateBirthdayErrorComponentDtoAttrEnum, ProfileUpdateBirthdayErrorComponentDtoCodeEnum, ProfileUpdateCreatedByErrorComponentDtoAttrEnum, ProfileUpdateCreatedByErrorComponentDtoCodeEnum, ProfileUpdateFirstNameErrorComponentDtoAttrEnum, ProfileUpdateFirstNameErrorComponentDtoCodeEnum, ProfileUpdateGithubUsernameErrorComponentDtoAttrEnum, ProfileUpdateGithubUsernameErrorComponentDtoCodeEnum, ProfileUpdateHomePhoneErrorComponentDtoAttrEnum, ProfileUpdateHomePhoneErrorComponentDtoCodeEnum, ProfileUpdateLastNameErrorComponentDtoAttrEnum, ProfileUpdateLastNameErrorComponentDtoCodeEnum, ProfileUpdateLocationErrorComponentDtoAttrEnum, ProfileUpdateLocationErrorComponentDtoCodeEnum, ProfileUpdateMiddleNameErrorComponentDtoAttrEnum, ProfileUpdateMiddleNameErrorComponentDtoCodeEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoAttrEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ProfileUpdateOfficePhoneErrorComponentDtoAttrEnum, ProfileUpdateOfficePhoneErrorComponentDtoCodeEnum, ProfileUpdatePersonalEmailErrorComponentDtoAttrEnum, ProfileUpdatePersonalEmailErrorComponentDtoCodeEnum, ProfileUpdatePersonalPhoneErrorComponentDtoAttrEnum, ProfileUpdatePersonalPhoneErrorComponentDtoCodeEnum, ProfileUpdateSkypeErrorComponentDtoAttrEnum, ProfileUpdateSkypeErrorComponentDtoCodeEnum, ProfileUpdateSlackIdErrorComponentDtoAttrEnum, ProfileUpdateSlackIdErrorComponentDtoCodeEnum, ProfileUpdateTimezoneErrorComponentDtoAttrEnum, ProfileUpdateTimezoneErrorComponentDtoCodeEnum, ProfileUpdateUpdatedByErrorComponentDtoAttrEnum, ProfileUpdateUpdatedByErrorComponentDtoCodeEnum, ProjectNotesApiService, ProjectNotesListIdErrorComponentDtoAttrEnum, ProjectNotesListIdErrorComponentDtoCodeEnum, ProjectNotesListIdInErrorComponentDtoAttrEnum, ProjectNotesListIdInErrorComponentDtoCodeEnum, ProjectNotesListProjectErrorComponentDtoAttrEnum, ProjectNotesListProjectErrorComponentDtoCodeEnum, ProjectNotesListProjectInErrorComponentDtoAttrEnum, ProjectNotesListProjectInErrorComponentDtoCodeEnum, ProjectPrioritiesApiService, ProjectPrioritiesListColorErrorComponentDtoAttrEnum, ProjectPrioritiesListColorErrorComponentDtoCodeEnum, ProjectPrioritiesListColorInErrorComponentDtoAttrEnum, ProjectPrioritiesListColorInErrorComponentDtoCodeEnum, ProjectPrioritiesListIdErrorComponentDtoAttrEnum, ProjectPrioritiesListIdErrorComponentDtoCodeEnum, ProjectPrioritiesListIdInErrorComponentDtoAttrEnum, ProjectPrioritiesListIdInErrorComponentDtoCodeEnum, ProjectPrioritiesListNameErrorComponentDtoAttrEnum, ProjectPrioritiesListNameErrorComponentDtoCodeEnum, ProjectPrioritiesListNameInErrorComponentDtoAttrEnum, ProjectPrioritiesListNameInErrorComponentDtoCodeEnum, ProjectStatusEnumDto, ProjectsApiService, ProjectsListClientContactErrorComponentDtoAttrEnum, ProjectsListClientContactErrorComponentDtoCodeEnum, ProjectsListClientContactInErrorComponentDtoAttrEnum, ProjectsListClientContactInErrorComponentDtoCodeEnum, ProjectsListClientErrorComponentDtoAttrEnum, ProjectsListClientErrorComponentDtoCodeEnum, ProjectsListClientInErrorComponentDtoAttrEnum, ProjectsListClientInErrorComponentDtoCodeEnum, ProjectsListIdErrorComponentDtoAttrEnum, ProjectsListIdErrorComponentDtoCodeEnum, ProjectsListIdInErrorComponentDtoAttrEnum, ProjectsListIdInErrorComponentDtoCodeEnum, ProjectsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsListStatusErrorComponentDtoAttrEnum, ProjectsListStatusErrorComponentDtoCodeEnum, ProjectsListStatusInErrorComponentDtoAttrEnum, ProjectsListStatusInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientErrorComponentDtoAttrEnum, ProjectsWithStatsListClientErrorComponentDtoCodeEnum, ProjectsWithStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithStatsListIdErrorComponentDtoAttrEnum, ProjectsWithStatsListIdErrorComponentDtoCodeEnum, ProjectsWithStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusInErrorComponentDtoCodeEnum, RolesApiService, RolesCreateNameErrorComponentDtoAttrEnum, RolesCreateNameErrorComponentDtoCodeEnum, RolesCreateNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreateNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, RolesListIdErrorComponentDtoAttrEnum, RolesListIdErrorComponentDtoCodeEnum, RolesListIdInErrorComponentDtoAttrEnum, RolesListIdInErrorComponentDtoCodeEnum, RolesListPermissionsPermissionErrorComponentDtoAttrEnum, RolesListPermissionsPermissionErrorComponentDtoCodeEnum, RolesListPermissionsPermissionInErrorComponentDtoAttrEnum, RolesListPermissionsPermissionInErrorComponentDtoCodeEnum, RolesListPermissionsScopeErrorComponentDtoAttrEnum, RolesListPermissionsScopeErrorComponentDtoCodeEnum, RolesListPermissionsScopeInErrorComponentDtoAttrEnum, RolesListPermissionsScopeInErrorComponentDtoCodeEnum, RolesUpdateNameErrorComponentDtoAttrEnum, RolesUpdateNameErrorComponentDtoCodeEnum, RolesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, S3ApiService, S3GetParamsCreateConfigErrorComponentDtoAttrEnum, S3GetParamsCreateConfigErrorComponentDtoCodeEnum, S3GetParamsCreateContentLengthErrorComponentDtoAttrEnum, S3GetParamsCreateContentLengthErrorComponentDtoCodeEnum, S3GetParamsCreateContentTypeErrorComponentDtoAttrEnum, S3GetParamsCreateContentTypeErrorComponentDtoCodeEnum, S3GetParamsCreateFilenameErrorComponentDtoAttrEnum, S3GetParamsCreateFilenameErrorComponentDtoCodeEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoAttrEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoCodeEnum, ScopeEnumDto, SearchPeriodsApiService, SearchPeriodsListBranchInErrorComponentDtoAttrEnum, SearchPeriodsListBranchInErrorComponentDtoCodeEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, SearchPeriodsListStatusInErrorComponentDtoAttrEnum, SearchPeriodsListStatusInErrorComponentDtoCodeEnum, SearchPeriodsListTypeInErrorComponentDtoAttrEnum, SearchPeriodsListTypeInErrorComponentDtoCodeEnum, SearchPeriodsListUserBranchInErrorComponentDtoAttrEnum, SearchPeriodsListUserBranchInErrorComponentDtoCodeEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoAttrEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoCodeEnum, SearchPeriodsListUserInErrorComponentDtoAttrEnum, SearchPeriodsListUserInErrorComponentDtoCodeEnum, SearchPeriodsListUserStatusInErrorComponentDtoAttrEnum, SearchPeriodsListUserStatusInErrorComponentDtoCodeEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoAttrEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoCodeEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoAttrEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoCodeEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoAttrEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoCodeEnum, ServerErrorEnumDto, SsoApiService, SsoCodeExchangeCreateCodeErrorComponentDtoAttrEnum, SsoCodeExchangeCreateCodeErrorComponentDtoCodeEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoAttrEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoCodeEnum, SsoDebugCreateEmailErrorComponentDtoAttrEnum, SsoDebugCreateEmailErrorComponentDtoCodeEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateRedirectUriErrorComponentDtoAttrEnum, SsoStartCreateRedirectUriErrorComponentDtoCodeEnum, StateEnumDto, TasksApiService, TasksListAssigneeErrorComponentDtoAttrEnum, TasksListAssigneeErrorComponentDtoCodeEnum, TasksListAssigneeInErrorComponentDtoAttrEnum, TasksListAssigneeInErrorComponentDtoCodeEnum, TasksListComponentErrorComponentDtoAttrEnum, TasksListComponentErrorComponentDtoCodeEnum, TasksListComponentInErrorComponentDtoAttrEnum, TasksListComponentInErrorComponentDtoCodeEnum, TasksListCreatedByErrorComponentDtoAttrEnum, TasksListCreatedByErrorComponentDtoCodeEnum, TasksListCreatedByInErrorComponentDtoAttrEnum, TasksListCreatedByInErrorComponentDtoCodeEnum, TasksListIdErrorComponentDtoAttrEnum, TasksListIdErrorComponentDtoCodeEnum, TasksListIdInErrorComponentDtoAttrEnum, TasksListIdInErrorComponentDtoCodeEnum, TasksListPriorityErrorComponentDtoAttrEnum, TasksListPriorityErrorComponentDtoCodeEnum, TasksListPriorityInErrorComponentDtoAttrEnum, TasksListPriorityInErrorComponentDtoCodeEnum, TasksListProjectClientErrorComponentDtoAttrEnum, TasksListProjectClientErrorComponentDtoCodeEnum, TasksListProjectClientInErrorComponentDtoAttrEnum, TasksListProjectClientInErrorComponentDtoCodeEnum, TasksListProjectErrorComponentDtoAttrEnum, TasksListProjectErrorComponentDtoCodeEnum, TasksListProjectInErrorComponentDtoAttrEnum, TasksListProjectInErrorComponentDtoCodeEnum, TasksListSprintErrorComponentDtoAttrEnum, TasksListSprintErrorComponentDtoCodeEnum, TasksListSprintInErrorComponentDtoAttrEnum, TasksListSprintInErrorComponentDtoCodeEnum, TasksListStatusErrorComponentDtoAttrEnum, TasksListStatusErrorComponentDtoCodeEnum, TasksListStatusInErrorComponentDtoAttrEnum, TasksListStatusInErrorComponentDtoCodeEnum, TasksListUpdatedByErrorComponentDtoAttrEnum, TasksListUpdatedByErrorComponentDtoCodeEnum, TasksListUpdatedByInErrorComponentDtoAttrEnum, TasksListUpdatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentInErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentInErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdInErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdInErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityInErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectInErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintInErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintInErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusInErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusInErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoCodeEnum, TokenApiService, TokenRefreshCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenRefreshCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenRefreshCreateRefreshErrorComponentDtoAttrEnum, TokenRefreshCreateRefreshErrorComponentDtoCodeEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenVerifyCreateTokenErrorComponentDtoAttrEnum, TokenVerifyCreateTokenErrorComponentDtoCodeEnum, UserCapacitiesApiService, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdInErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdInErrorComponentDtoCodeEnum, UserCapacitiesListDateGteErrorComponentDtoAttrEnum, UserCapacitiesListDateGteErrorComponentDtoCodeEnum, UserCapacitiesListDateLteErrorComponentDtoAttrEnum, UserCapacitiesListDateLteErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoCodeEnum, UserCapacitiesListIdErrorComponentDtoAttrEnum, UserCapacitiesListIdErrorComponentDtoCodeEnum, UserCapacitiesListIdInErrorComponentDtoAttrEnum, UserCapacitiesListIdInErrorComponentDtoCodeEnum, UserCapacitiesListUserIdErrorComponentDtoAttrEnum, UserCapacitiesListUserIdErrorComponentDtoCodeEnum, UserCapacitiesListUserIdInErrorComponentDtoAttrEnum, UserCapacitiesListUserIdInErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoCodeEnum, UserLoginsApiService, UserLoginsListBranchErrorComponentDtoAttrEnum, UserLoginsListBranchErrorComponentDtoCodeEnum, UserLoginsListBranchInErrorComponentDtoAttrEnum, UserLoginsListBranchInErrorComponentDtoCodeEnum, UserLoginsListDepartmentErrorComponentDtoAttrEnum, UserLoginsListDepartmentErrorComponentDtoCodeEnum, UserLoginsListDepartmentInErrorComponentDtoAttrEnum, UserLoginsListDepartmentInErrorComponentDtoCodeEnum, UserLoginsListIdErrorComponentDtoAttrEnum, UserLoginsListIdErrorComponentDtoCodeEnum, UserLoginsListIdInErrorComponentDtoAttrEnum, UserLoginsListIdInErrorComponentDtoCodeEnum, UserLoginsListRoleErrorComponentDtoAttrEnum, UserLoginsListRoleErrorComponentDtoCodeEnum, UserLoginsListRoleInErrorComponentDtoAttrEnum, UserLoginsListRoleInErrorComponentDtoCodeEnum, UserLoginsListWorkTypeErrorComponentDtoAttrEnum, UserLoginsListWorkTypeErrorComponentDtoCodeEnum, UserLoginsListWorkTypeInErrorComponentDtoAttrEnum, UserLoginsListWorkTypeInErrorComponentDtoCodeEnum, UserLoginsUpdateEmailErrorComponentDtoAttrEnum, UserLoginsUpdateEmailErrorComponentDtoCodeEnum, UserLoginsUpdateIsStaffErrorComponentDtoAttrEnum, UserLoginsUpdateIsStaffErrorComponentDtoCodeEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserLoginsUpdateRoleErrorComponentDtoAttrEnum, UserLoginsUpdateRoleErrorComponentDtoCodeEnum, UserPeriodStatusEnumDto, UserPeriodTypeEnumDto, UserPeriodsApiService, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoCodeEnum, UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum, UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum, UserPeriodsCreateFileErrorComponentDtoAttrEnum, UserPeriodsCreateFileErrorComponentDtoCodeEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsCreateTypeErrorComponentDtoAttrEnum, UserPeriodsCreateTypeErrorComponentDtoCodeEnum, UserPeriodsCreateUserErrorComponentDtoAttrEnum, UserPeriodsCreateUserErrorComponentDtoCodeEnum, UserPeriodsListIdErrorComponentDtoAttrEnum, UserPeriodsListIdErrorComponentDtoCodeEnum, UserPeriodsListIdInErrorComponentDtoAttrEnum, UserPeriodsListIdInErrorComponentDtoCodeEnum, UserPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, UserPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, UserPeriodsListStatusErrorComponentDtoAttrEnum, UserPeriodsListStatusErrorComponentDtoCodeEnum, UserPeriodsListStatusInErrorComponentDtoAttrEnum, UserPeriodsListStatusInErrorComponentDtoCodeEnum, UserPeriodsListTypeErrorComponentDtoAttrEnum, UserPeriodsListTypeErrorComponentDtoCodeEnum, UserPeriodsListTypeInErrorComponentDtoAttrEnum, UserPeriodsListTypeInErrorComponentDtoCodeEnum, UserPeriodsListUserBranchIdInErrorComponentDtoAttrEnum, UserPeriodsListUserBranchIdInErrorComponentDtoCodeEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoAttrEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoCodeEnum, UserPeriodsListUserIdInErrorComponentDtoAttrEnum, UserPeriodsListUserIdInErrorComponentDtoCodeEnum, UserPeriodsListUserStatusErrorComponentDtoAttrEnum, UserPeriodsListUserStatusErrorComponentDtoCodeEnum, UserPeriodsListUserStatusInErrorComponentDtoAttrEnum, UserPeriodsListUserStatusInErrorComponentDtoCodeEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoCodeEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoCodeEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoAttrEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoCodeEnum, UserPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, UserPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, UserPeriodsUpdateFileErrorComponentDtoAttrEnum, UserPeriodsUpdateFileErrorComponentDtoCodeEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsUpdateTypeErrorComponentDtoAttrEnum, UserPeriodsUpdateTypeErrorComponentDtoCodeEnum, UserPeriodsUpdateUserErrorComponentDtoAttrEnum, UserPeriodsUpdateUserErrorComponentDtoCodeEnum, UserScoresApiService, UserScoresCreateCommentErrorComponentDtoAttrEnum, UserScoresCreateCommentErrorComponentDtoCodeEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserScoresCreateReceiverErrorComponentDtoAttrEnum, UserScoresCreateReceiverErrorComponentDtoCodeEnum, UserScoresCreateScoreErrorComponentDtoAttrEnum, UserScoresCreateScoreErrorComponentDtoCodeEnum, UserScoresListCommentIcontainsErrorComponentDtoAttrEnum, UserScoresListCommentIcontainsErrorComponentDtoCodeEnum, UserScoresListCreatedByErrorComponentDtoAttrEnum, UserScoresListCreatedByErrorComponentDtoCodeEnum, UserScoresListCreatedByInErrorComponentDtoAttrEnum, UserScoresListCreatedByInErrorComponentDtoCodeEnum, UserScoresListCreatedDateGteErrorComponentDtoAttrEnum, UserScoresListCreatedDateGteErrorComponentDtoCodeEnum, UserScoresListCreatedDateLteErrorComponentDtoAttrEnum, UserScoresListCreatedDateLteErrorComponentDtoCodeEnum, UserScoresListCreatedGteErrorComponentDtoAttrEnum, UserScoresListCreatedGteErrorComponentDtoCodeEnum, UserScoresListCreatedLteErrorComponentDtoAttrEnum, UserScoresListCreatedLteErrorComponentDtoCodeEnum, UserScoresListIdErrorComponentDtoAttrEnum, UserScoresListIdErrorComponentDtoCodeEnum, UserScoresListIdInErrorComponentDtoAttrEnum, UserScoresListIdInErrorComponentDtoCodeEnum, UserScoresListReceiverErrorComponentDtoAttrEnum, UserScoresListReceiverErrorComponentDtoCodeEnum, UserScoresListReceiverInErrorComponentDtoAttrEnum, UserScoresListReceiverInErrorComponentDtoCodeEnum, UserScoresListScoreErrorComponentDtoAttrEnum, UserScoresListScoreErrorComponentDtoCodeEnum, UserScoresListScoreInErrorComponentDtoAttrEnum, UserScoresListScoreInErrorComponentDtoCodeEnum, UserStatusEnumDto, UserTimezoneSettingApiService, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoAttrEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoCodeEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoAttrEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoCodeEnum, UserTimezoneSettingOrderingEnumDto, UserTimezonesApiService, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersApiService, UsersCreateAvatarErrorComponentDtoAttrEnum, UsersCreateAvatarErrorComponentDtoCodeEnum, UsersCreateBirthdayErrorComponentDtoAttrEnum, UsersCreateBirthdayErrorComponentDtoCodeEnum, UsersCreateBranchErrorComponentDtoAttrEnum, UsersCreateBranchErrorComponentDtoCodeEnum, UsersCreateCreatedByErrorComponentDtoAttrEnum, UsersCreateCreatedByErrorComponentDtoCodeEnum, UsersCreateDepartmentErrorComponentDtoAttrEnum, UsersCreateDepartmentErrorComponentDtoCodeEnum, UsersCreateDismissalReasonsErrorComponentDtoAttrEnum, UsersCreateDismissalReasonsErrorComponentDtoCodeEnum, UsersCreateEmailErrorComponentDtoAttrEnum, UsersCreateEmailErrorComponentDtoCodeEnum, UsersCreateFirstNameErrorComponentDtoAttrEnum, UsersCreateFirstNameErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayErrorComponentDtoCodeEnum, UsersCreateGithubUsernameErrorComponentDtoAttrEnum, UsersCreateGithubUsernameErrorComponentDtoCodeEnum, UsersCreateHomePhoneErrorComponentDtoAttrEnum, UsersCreateHomePhoneErrorComponentDtoCodeEnum, UsersCreateIsInternErrorComponentDtoAttrEnum, UsersCreateIsInternErrorComponentDtoCodeEnum, UsersCreateIsPartTimeErrorComponentDtoAttrEnum, UsersCreateIsPartTimeErrorComponentDtoCodeEnum, UsersCreateJiraAccountIdErrorComponentDtoAttrEnum, UsersCreateJiraAccountIdErrorComponentDtoCodeEnum, UsersCreateLastNameErrorComponentDtoAttrEnum, UsersCreateLastNameErrorComponentDtoCodeEnum, UsersCreateLastWorkingDayErrorComponentDtoAttrEnum, UsersCreateLastWorkingDayErrorComponentDtoCodeEnum, UsersCreateLocationErrorComponentDtoAttrEnum, UsersCreateLocationErrorComponentDtoCodeEnum, UsersCreateMiddleNameErrorComponentDtoAttrEnum, UsersCreateMiddleNameErrorComponentDtoCodeEnum, UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum, UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersCreateOfficePhoneErrorComponentDtoAttrEnum, UsersCreateOfficePhoneErrorComponentDtoCodeEnum, UsersCreateOnsiteErrorComponentDtoAttrEnum, UsersCreateOnsiteErrorComponentDtoCodeEnum, UsersCreatePersonalEmailErrorComponentDtoAttrEnum, UsersCreatePersonalEmailErrorComponentDtoCodeEnum, UsersCreatePersonalPhoneErrorComponentDtoAttrEnum, UsersCreatePersonalPhoneErrorComponentDtoCodeEnum, UsersCreateRecruitedByErrorComponentDtoAttrEnum, UsersCreateRecruitedByErrorComponentDtoCodeEnum, UsersCreateRoleErrorComponentDtoAttrEnum, UsersCreateRoleErrorComponentDtoCodeEnum, UsersCreateSkypeErrorComponentDtoAttrEnum, UsersCreateSkypeErrorComponentDtoCodeEnum, UsersCreateSlackIdErrorComponentDtoAttrEnum, UsersCreateSlackIdErrorComponentDtoCodeEnum, UsersCreateStatusErrorComponentDtoAttrEnum, UsersCreateStatusErrorComponentDtoCodeEnum, UsersCreateSuperviseesErrorComponentDtoAttrEnum, UsersCreateSuperviseesErrorComponentDtoCodeEnum, UsersCreateSupervisorsErrorComponentDtoAttrEnum, UsersCreateSupervisorsErrorComponentDtoCodeEnum, UsersCreateTimezoneErrorComponentDtoAttrEnum, UsersCreateTimezoneErrorComponentDtoCodeEnum, UsersCreateUpdatedByErrorComponentDtoAttrEnum, UsersCreateUpdatedByErrorComponentDtoCodeEnum, UsersCreateUtilizationPercentErrorComponentDtoAttrEnum, UsersCreateUtilizationPercentErrorComponentDtoCodeEnum, UsersCreateVendorErrorComponentDtoAttrEnum, UsersCreateVendorErrorComponentDtoCodeEnum, UsersCreateWorkTypeErrorComponentDtoAttrEnum, UsersCreateWorkTypeErrorComponentDtoCodeEnum, UsersListBranchErrorComponentDtoAttrEnum, UsersListBranchErrorComponentDtoCodeEnum, UsersListBranchInErrorComponentDtoAttrEnum, UsersListBranchInErrorComponentDtoCodeEnum, UsersListDepartmentErrorComponentDtoAttrEnum, UsersListDepartmentErrorComponentDtoCodeEnum, UsersListDepartmentInErrorComponentDtoAttrEnum, UsersListDepartmentInErrorComponentDtoCodeEnum, UsersListIdErrorComponentDtoAttrEnum, UsersListIdErrorComponentDtoCodeEnum, UsersListIdInErrorComponentDtoAttrEnum, UsersListIdInErrorComponentDtoCodeEnum, UsersListRoleErrorComponentDtoAttrEnum, UsersListRoleErrorComponentDtoCodeEnum, UsersListRoleInErrorComponentDtoAttrEnum, UsersListRoleInErrorComponentDtoCodeEnum, UsersListStatusErrorComponentDtoAttrEnum, UsersListStatusErrorComponentDtoCodeEnum, UsersListStatusInErrorComponentDtoAttrEnum, UsersListStatusInErrorComponentDtoCodeEnum, UsersListSuperviseesIdInErrorComponentDtoAttrEnum, UsersListSuperviseesIdInErrorComponentDtoCodeEnum, UsersListSupervisorsIdInErrorComponentDtoAttrEnum, UsersListSupervisorsIdInErrorComponentDtoCodeEnum, UsersListWorkTypeErrorComponentDtoAttrEnum, UsersListWorkTypeErrorComponentDtoCodeEnum, UsersListWorkTypeInErrorComponentDtoAttrEnum, UsersListWorkTypeInErrorComponentDtoCodeEnum, UsersUpdateAvatarErrorComponentDtoAttrEnum, UsersUpdateAvatarErrorComponentDtoCodeEnum, UsersUpdateBirthdayErrorComponentDtoAttrEnum, UsersUpdateBirthdayErrorComponentDtoCodeEnum, UsersUpdateBranchErrorComponentDtoAttrEnum, UsersUpdateBranchErrorComponentDtoCodeEnum, UsersUpdateCreatedByErrorComponentDtoAttrEnum, UsersUpdateCreatedByErrorComponentDtoCodeEnum, UsersUpdateDepartmentErrorComponentDtoAttrEnum, UsersUpdateDepartmentErrorComponentDtoCodeEnum, UsersUpdateDismissalReasonsErrorComponentDtoAttrEnum, UsersUpdateDismissalReasonsErrorComponentDtoCodeEnum, UsersUpdateEmailErrorComponentDtoAttrEnum, UsersUpdateEmailErrorComponentDtoCodeEnum, UsersUpdateFirstNameErrorComponentDtoAttrEnum, UsersUpdateFirstNameErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayErrorComponentDtoCodeEnum, UsersUpdateGithubUsernameErrorComponentDtoAttrEnum, UsersUpdateGithubUsernameErrorComponentDtoCodeEnum, UsersUpdateHomePhoneErrorComponentDtoAttrEnum, UsersUpdateHomePhoneErrorComponentDtoCodeEnum, UsersUpdateIsInternErrorComponentDtoAttrEnum, UsersUpdateIsInternErrorComponentDtoCodeEnum, UsersUpdateIsPartTimeErrorComponentDtoAttrEnum, UsersUpdateIsPartTimeErrorComponentDtoCodeEnum, UsersUpdateJiraAccountIdErrorComponentDtoAttrEnum, UsersUpdateJiraAccountIdErrorComponentDtoCodeEnum, UsersUpdateLastNameErrorComponentDtoAttrEnum, UsersUpdateLastNameErrorComponentDtoCodeEnum, UsersUpdateLastWorkingDayErrorComponentDtoAttrEnum, UsersUpdateLastWorkingDayErrorComponentDtoCodeEnum, UsersUpdateLocationErrorComponentDtoAttrEnum, UsersUpdateLocationErrorComponentDtoCodeEnum, UsersUpdateMiddleNameErrorComponentDtoAttrEnum, UsersUpdateMiddleNameErrorComponentDtoCodeEnum, UsersUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UsersUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UsersUpdateOfficePhoneErrorComponentDtoAttrEnum, UsersUpdateOfficePhoneErrorComponentDtoCodeEnum, UsersUpdateOnsiteErrorComponentDtoAttrEnum, UsersUpdateOnsiteErrorComponentDtoCodeEnum, UsersUpdatePersonalEmailErrorComponentDtoAttrEnum, UsersUpdatePersonalEmailErrorComponentDtoCodeEnum, UsersUpdatePersonalPhoneErrorComponentDtoAttrEnum, UsersUpdatePersonalPhoneErrorComponentDtoCodeEnum, UsersUpdateRecruitedByErrorComponentDtoAttrEnum, UsersUpdateRecruitedByErrorComponentDtoCodeEnum, UsersUpdateRoleErrorComponentDtoAttrEnum, UsersUpdateRoleErrorComponentDtoCodeEnum, UsersUpdateSkypeErrorComponentDtoAttrEnum, UsersUpdateSkypeErrorComponentDtoCodeEnum, UsersUpdateSlackIdErrorComponentDtoAttrEnum, UsersUpdateSlackIdErrorComponentDtoCodeEnum, UsersUpdateStatusErrorComponentDtoAttrEnum, UsersUpdateStatusErrorComponentDtoCodeEnum, UsersUpdateSuperviseesErrorComponentDtoAttrEnum, UsersUpdateSuperviseesErrorComponentDtoCodeEnum, UsersUpdateSupervisorsErrorComponentDtoAttrEnum, UsersUpdateSupervisorsErrorComponentDtoCodeEnum, UsersUpdateTimezoneErrorComponentDtoAttrEnum, UsersUpdateTimezoneErrorComponentDtoCodeEnum, UsersUpdateUpdatedByErrorComponentDtoAttrEnum, UsersUpdateUpdatedByErrorComponentDtoCodeEnum, UsersUpdateUtilizationPercentErrorComponentDtoAttrEnum, UsersUpdateUtilizationPercentErrorComponentDtoCodeEnum, UsersUpdateVendorErrorComponentDtoAttrEnum, UsersUpdateVendorErrorComponentDtoCodeEnum, UsersUpdateWorkTypeErrorComponentDtoAttrEnum, UsersUpdateWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchInErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchInErrorComponentDtoCodeEnum, UsersUtilizationChartListDateGteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateGteErrorComponentDtoCodeEnum, UsersUtilizationChartListDateLteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateLteErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoCodeEnum, UsersUtilizationChartListIdErrorComponentDtoAttrEnum, UsersUtilizationChartListIdErrorComponentDtoCodeEnum, UsersUtilizationChartListIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListIsTotalErrorComponentDtoAttrEnum, UsersUtilizationChartListIsTotalErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleInErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleInErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusInErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusInErrorComponentDtoCodeEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoAttrEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoCodeEnum, ValidationErrorEnumDto, VendorsApiService, VendorsCreateNameErrorComponentDtoAttrEnum, VendorsCreateNameErrorComponentDtoCodeEnum, VendorsCreateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsCreateNonFieldErrorsErrorComponentDtoCodeEnum, VendorsListIdErrorComponentDtoAttrEnum, VendorsListIdErrorComponentDtoCodeEnum, VendorsListIdInErrorComponentDtoAttrEnum, VendorsListIdInErrorComponentDtoCodeEnum, VendorsUpdateNameErrorComponentDtoAttrEnum, VendorsUpdateNameErrorComponentDtoCodeEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WhoAmIApiService, WorkTypesApiService, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateDepartmentErrorComponentDtoAttrEnum, WorkTypesCreateDepartmentErrorComponentDtoCodeEnum, WorkTypesCreateNameErrorComponentDtoAttrEnum, WorkTypesCreateNameErrorComponentDtoCodeEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateParentErrorComponentDtoAttrEnum, WorkTypesCreateParentErrorComponentDtoCodeEnum, WorkTypesListDepartmentErrorComponentDtoAttrEnum, WorkTypesListDepartmentErrorComponentDtoCodeEnum, WorkTypesListDepartmentInErrorComponentDtoAttrEnum, WorkTypesListDepartmentInErrorComponentDtoCodeEnum, WorkTypesListIdErrorComponentDtoAttrEnum, WorkTypesListIdErrorComponentDtoCodeEnum, WorkTypesListIdInErrorComponentDtoAttrEnum, WorkTypesListIdInErrorComponentDtoCodeEnum, WorkTypesListParentErrorComponentDtoAttrEnum, WorkTypesListParentErrorComponentDtoCodeEnum, WorkTypesListParentInErrorComponentDtoAttrEnum, WorkTypesListParentInErrorComponentDtoCodeEnum, WorkTypesUpdateDepartmentErrorComponentDtoAttrEnum, WorkTypesUpdateDepartmentErrorComponentDtoCodeEnum, WorkTypesUpdateNameErrorComponentDtoAttrEnum, WorkTypesUpdateNameErrorComponentDtoCodeEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesUpdateParentErrorComponentDtoAttrEnum, WorkTypesUpdateParentErrorComponentDtoCodeEnum };
26589
27215
  //# sourceMappingURL=saritasa-crm-delmar-core-sdk.mjs.map