@saritasa/crm-delmar-core-sdk 0.0.28 → 0.0.30

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 (91) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +4 -1
  3. package/api/notifications-api.service.d.ts +123 -0
  4. package/api/notifications-api.serviceInterface.d.ts +76 -0
  5. package/esm2022/api/api.mjs +5 -1
  6. package/esm2022/api/branch-periods-api.service.mjs +3 -3
  7. package/esm2022/api/branches-api.service.mjs +3 -3
  8. package/esm2022/api/departments-api.service.mjs +3 -3
  9. package/esm2022/api/dismissal-reasons-api.service.mjs +3 -3
  10. package/esm2022/api/jira-client-api.service.mjs +3 -3
  11. package/esm2022/api/jira-instances-api.service.mjs +3 -3
  12. package/esm2022/api/locations-api.service.mjs +3 -3
  13. package/esm2022/api/notifications-api.service.mjs +448 -0
  14. package/esm2022/api/notifications-api.serviceInterface.mjs +2 -0
  15. package/esm2022/api/permission-data-api.service.mjs +3 -3
  16. package/esm2022/api/profile-api.service.mjs +3 -3
  17. package/esm2022/api/projects-api.service.mjs +3 -3
  18. package/esm2022/api/roles-api.service.mjs +3 -3
  19. package/esm2022/api/s3-api.service.mjs +3 -3
  20. package/esm2022/api/search-periods-api.service.mjs +3 -3
  21. package/esm2022/api/sso-api.service.mjs +3 -3
  22. package/esm2022/api/token-api.service.mjs +3 -3
  23. package/esm2022/api/user-capacities-api.service.mjs +3 -3
  24. package/esm2022/api/user-logins-api.service.mjs +3 -3
  25. package/esm2022/api/user-periods-api.service.mjs +3 -3
  26. package/esm2022/api/user-timezone-setting-api.service.mjs +3 -3
  27. package/esm2022/api/user-timezones-api.service.mjs +3 -3
  28. package/esm2022/api/users-api.service.mjs +3 -3
  29. package/esm2022/api/vendors-api.service.mjs +3 -3
  30. package/esm2022/api/who-am-i-api.service.mjs +3 -3
  31. package/esm2022/api/work-types-api.service.mjs +3 -3
  32. package/esm2022/api.module.mjs +4 -4
  33. package/esm2022/model/models.mjs +28 -1
  34. package/esm2022/model/notification-data.dto.mjs +2 -0
  35. package/esm2022/model/notification-type-enum.dto.mjs +30 -0
  36. package/esm2022/model/notification.dto.mjs +2 -0
  37. package/esm2022/model/notifications-delete-all-destroy-error-response400.dto.mjs +2 -0
  38. package/esm2022/model/notifications-list-created-gt-error-component.dto.mjs +18 -0
  39. package/esm2022/model/notifications-list-created-gte-error-component.dto.mjs +18 -0
  40. package/esm2022/model/notifications-list-created-lt-error-component.dto.mjs +18 -0
  41. package/esm2022/model/notifications-list-created-lte-error-component.dto.mjs +18 -0
  42. package/esm2022/model/notifications-list-error-response400.dto.mjs +2 -0
  43. package/esm2022/model/notifications-list-error.dto.mjs +2 -0
  44. package/esm2022/model/notifications-list-id-error-component.dto.mjs +19 -0
  45. package/esm2022/model/notifications-list-id-gt-error-component.dto.mjs +19 -0
  46. package/esm2022/model/notifications-list-id-gte-error-component.dto.mjs +19 -0
  47. package/esm2022/model/notifications-list-id-in-error-component.dto.mjs +19 -0
  48. package/esm2022/model/notifications-list-id-lt-error-component.dto.mjs +19 -0
  49. package/esm2022/model/notifications-list-id-lte-error-component.dto.mjs +19 -0
  50. package/esm2022/model/notifications-list-type-error-component.dto.mjs +18 -0
  51. package/esm2022/model/notifications-list-type-in-error-component.dto.mjs +18 -0
  52. package/esm2022/model/notifications-list-validation-error.dto.mjs +2 -0
  53. package/esm2022/model/notifications-read-create-error-response400.dto.mjs +2 -0
  54. package/esm2022/model/notifications-retrieve-error-response400.dto.mjs +2 -0
  55. package/esm2022/model/notifications-unread-create-error-response400.dto.mjs +2 -0
  56. package/esm2022/model/notify-data-notification-payload.dto.mjs +2 -0
  57. package/esm2022/model/notify-data-user-period-payload.dto.mjs +2 -0
  58. package/esm2022/model/notify-data-user-period.dto.mjs +2 -0
  59. package/esm2022/model/notify-data-user.dto.mjs +11 -0
  60. package/esm2022/model/paginated-notification-list.dto.mjs +2 -0
  61. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +780 -78
  62. package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
  63. package/model/models.d.ts +27 -0
  64. package/model/notification-data.dto.d.ts +16 -0
  65. package/model/notification-type-enum.dto.d.ts +28 -0
  66. package/model/notification.dto.d.ts +22 -0
  67. package/model/notifications-delete-all-destroy-error-response400.dto.d.ts +15 -0
  68. package/model/notifications-list-created-gt-error-component.dto.d.ts +26 -0
  69. package/model/notifications-list-created-gte-error-component.dto.d.ts +26 -0
  70. package/model/notifications-list-created-lt-error-component.dto.d.ts +26 -0
  71. package/model/notifications-list-created-lte-error-component.dto.d.ts +26 -0
  72. package/model/notifications-list-error-response400.dto.d.ts +16 -0
  73. package/model/notifications-list-error.dto.d.ts +26 -0
  74. package/model/notifications-list-id-error-component.dto.d.ts +27 -0
  75. package/model/notifications-list-id-gt-error-component.dto.d.ts +27 -0
  76. package/model/notifications-list-id-gte-error-component.dto.d.ts +27 -0
  77. package/model/notifications-list-id-in-error-component.dto.d.ts +27 -0
  78. package/model/notifications-list-id-lt-error-component.dto.d.ts +27 -0
  79. package/model/notifications-list-id-lte-error-component.dto.d.ts +27 -0
  80. package/model/notifications-list-type-error-component.dto.d.ts +26 -0
  81. package/model/notifications-list-type-in-error-component.dto.d.ts +26 -0
  82. package/model/notifications-list-validation-error.dto.d.ts +15 -0
  83. package/model/notifications-read-create-error-response400.dto.d.ts +15 -0
  84. package/model/notifications-retrieve-error-response400.dto.d.ts +15 -0
  85. package/model/notifications-unread-create-error-response400.dto.d.ts +15 -0
  86. package/model/notify-data-notification-payload.dto.d.ts +17 -0
  87. package/model/notify-data-user-period-payload.dto.d.ts +19 -0
  88. package/model/notify-data-user-period.dto.d.ts +29 -0
  89. package/model/notify-data-user.dto.d.ts +26 -0
  90. package/model/paginated-notification-list.dto.d.ts +16 -0
  91. package/package.json +2 -2
package/model/models.d.ts CHANGED
@@ -197,6 +197,32 @@ export * from "./locations-update-non-field-errors-error-component.dto";
197
197
  export * from "./locations-update-timezone-error-component.dto";
198
198
  export * from "./locations-update-validation-error.dto";
199
199
  export * from "./login-open-id-request.dto";
200
+ export * from "./notification-data.dto";
201
+ export * from "./notification.dto";
202
+ export * from "./notification-type-enum.dto";
203
+ export * from "./notifications-delete-all-destroy-error-response400.dto";
204
+ export * from "./notifications-list-created-gt-error-component.dto";
205
+ export * from "./notifications-list-created-gte-error-component.dto";
206
+ export * from "./notifications-list-created-lt-error-component.dto";
207
+ export * from "./notifications-list-created-lte-error-component.dto";
208
+ export * from "./notifications-list-error.dto";
209
+ export * from "./notifications-list-error-response400.dto";
210
+ export * from "./notifications-list-id-error-component.dto";
211
+ export * from "./notifications-list-id-gt-error-component.dto";
212
+ export * from "./notifications-list-id-gte-error-component.dto";
213
+ export * from "./notifications-list-id-in-error-component.dto";
214
+ export * from "./notifications-list-id-lt-error-component.dto";
215
+ export * from "./notifications-list-id-lte-error-component.dto";
216
+ export * from "./notifications-list-type-error-component.dto";
217
+ export * from "./notifications-list-type-in-error-component.dto";
218
+ export * from "./notifications-list-validation-error.dto";
219
+ export * from "./notifications-read-create-error-response400.dto";
220
+ export * from "./notifications-retrieve-error-response400.dto";
221
+ export * from "./notifications-unread-create-error-response400.dto";
222
+ export * from "./notify-data-notification-payload.dto";
223
+ export * from "./notify-data-user.dto";
224
+ export * from "./notify-data-user-period.dto";
225
+ export * from "./notify-data-user-period-payload.dto";
200
226
  export * from "./open-id-code-exchange-request.dto";
201
227
  export * from "./open-id-redirect.dto";
202
228
  export * from "./paginated-branch-list.dto";
@@ -205,6 +231,7 @@ export * from "./paginated-branch-user-stats-list.dto";
205
231
  export * from "./paginated-department-list.dto";
206
232
  export * from "./paginated-jira-instance-list.dto";
207
233
  export * from "./paginated-location-list.dto";
234
+ export * from "./paginated-notification-list.dto";
208
235
  export * from "./paginated-project-list.dto";
209
236
  export * from "./paginated-role-list.dto";
210
237
  export * from "./paginated-simple-dismissal-reason-list.dto";
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { NotifyDataNotificationPayloadDto } from "./notify-data-notification-payload.dto";
11
+ import { NotifyDataUserPeriodPayloadDto } from "./notify-data-user-period-payload.dto";
12
+ /**
13
+ * @type NotificationDataDto
14
+ * @export
15
+ */
16
+ export type NotificationDataDto = NotifyDataNotificationPayloadDto | NotifyDataUserPeriodPayloadDto;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ /**
11
+ * * `new_vacation` - New vacation * `updated_vacation` - Updated vacation * `vacation_approved` - Vacation approved * `vacation_rejected` - Vacation rejected * `new_sick` - New sick * `new_personal_holiday` - New personal holiday * `new_personal_workday` - New personal workday * `new_compensation` - New compensation * `updated_sick` - Updated sick * `updated_personal_holiday` - Updated personal holiday * `updated_personal_workday` - Updated personal workday * `deleted_sick` - Deleted sick * `deleted_personal_holiday` - Deleted personal holiday * `deleted_personal_workday` - Deleted personal workday
12
+ */
13
+ export declare enum NotificationTypeEnumDto {
14
+ NewVacation = "new_vacation",
15
+ UpdatedVacation = "updated_vacation",
16
+ VacationApproved = "vacation_approved",
17
+ VacationRejected = "vacation_rejected",
18
+ NewSick = "new_sick",
19
+ NewPersonalHoliday = "new_personal_holiday",
20
+ NewPersonalWorkday = "new_personal_workday",
21
+ NewCompensation = "new_compensation",
22
+ UpdatedSick = "updated_sick",
23
+ UpdatedPersonalHoliday = "updated_personal_holiday",
24
+ UpdatedPersonalWorkday = "updated_personal_workday",
25
+ DeletedSick = "deleted_sick",
26
+ DeletedPersonalHoliday = "deleted_personal_holiday",
27
+ DeletedPersonalWorkday = "deleted_personal_workday"
28
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { NotificationTypeEnumDto } from "./notification-type-enum.dto";
11
+ import { NotificationDataDto } from "./notification-data.dto";
12
+ /**
13
+ * Serializer for Notification model.
14
+ */
15
+ export interface NotificationDto {
16
+ readonly id: number;
17
+ readonly created: string;
18
+ readonly modified: string;
19
+ type: NotificationTypeEnumDto;
20
+ readonly data_payload: NotificationDataDto;
21
+ is_read?: boolean;
22
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { ParseErrorResponseDto } from "./parse-error-response.dto";
11
+ /**
12
+ * @type NotificationsDeleteAllDestroyErrorResponse400Dto
13
+ * @export
14
+ */
15
+ export type NotificationsDeleteAllDestroyErrorResponse400Dto = ParseErrorResponseDto;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListCreatedGtErrorComponentDto {
11
+ /**
12
+ * * `created__gt` - created__gt
13
+ */
14
+ attr: NotificationsListCreatedGtErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid
17
+ */
18
+ code: NotificationsListCreatedGtErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListCreatedGtErrorComponentDtoAttrEnum {
22
+ CreatedGt = "created__gt"
23
+ }
24
+ export declare enum NotificationsListCreatedGtErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid"
26
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListCreatedGteErrorComponentDto {
11
+ /**
12
+ * * `created__gte` - created__gte
13
+ */
14
+ attr: NotificationsListCreatedGteErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid
17
+ */
18
+ code: NotificationsListCreatedGteErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListCreatedGteErrorComponentDtoAttrEnum {
22
+ CreatedGte = "created__gte"
23
+ }
24
+ export declare enum NotificationsListCreatedGteErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid"
26
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListCreatedLtErrorComponentDto {
11
+ /**
12
+ * * `created__lt` - created__lt
13
+ */
14
+ attr: NotificationsListCreatedLtErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid
17
+ */
18
+ code: NotificationsListCreatedLtErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListCreatedLtErrorComponentDtoAttrEnum {
22
+ CreatedLt = "created__lt"
23
+ }
24
+ export declare enum NotificationsListCreatedLtErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid"
26
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListCreatedLteErrorComponentDto {
11
+ /**
12
+ * * `created__lte` - created__lte
13
+ */
14
+ attr: NotificationsListCreatedLteErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid
17
+ */
18
+ code: NotificationsListCreatedLteErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListCreatedLteErrorComponentDtoAttrEnum {
22
+ CreatedLte = "created__lte"
23
+ }
24
+ export declare enum NotificationsListCreatedLteErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid"
26
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { ParseErrorResponseDto } from "./parse-error-response.dto";
11
+ import { NotificationsListValidationErrorDto } from "./notifications-list-validation-error.dto";
12
+ /**
13
+ * @type NotificationsListErrorResponse400Dto
14
+ * @export
15
+ */
16
+ export type NotificationsListErrorResponse400Dto = NotificationsListValidationErrorDto | ParseErrorResponseDto;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { NotificationsListCreatedLtErrorComponentDto } from "./notifications-list-created-lt-error-component.dto";
11
+ import { NotificationsListTypeErrorComponentDto } from "./notifications-list-type-error-component.dto";
12
+ import { NotificationsListCreatedLteErrorComponentDto } from "./notifications-list-created-lte-error-component.dto";
13
+ import { NotificationsListCreatedGtErrorComponentDto } from "./notifications-list-created-gt-error-component.dto";
14
+ import { NotificationsListIdGteErrorComponentDto } from "./notifications-list-id-gte-error-component.dto";
15
+ import { NotificationsListCreatedGteErrorComponentDto } from "./notifications-list-created-gte-error-component.dto";
16
+ import { NotificationsListIdGtErrorComponentDto } from "./notifications-list-id-gt-error-component.dto";
17
+ import { NotificationsListIdLtErrorComponentDto } from "./notifications-list-id-lt-error-component.dto";
18
+ import { NotificationsListIdInErrorComponentDto } from "./notifications-list-id-in-error-component.dto";
19
+ import { NotificationsListTypeInErrorComponentDto } from "./notifications-list-type-in-error-component.dto";
20
+ import { NotificationsListIdErrorComponentDto } from "./notifications-list-id-error-component.dto";
21
+ import { NotificationsListIdLteErrorComponentDto } from "./notifications-list-id-lte-error-component.dto";
22
+ /**
23
+ * @type NotificationsListErrorDto
24
+ * @export
25
+ */
26
+ export type NotificationsListErrorDto = NotificationsListCreatedGtErrorComponentDto | NotificationsListCreatedGteErrorComponentDto | NotificationsListCreatedLtErrorComponentDto | NotificationsListCreatedLteErrorComponentDto | NotificationsListIdErrorComponentDto | NotificationsListIdGtErrorComponentDto | NotificationsListIdGteErrorComponentDto | NotificationsListIdInErrorComponentDto | NotificationsListIdLtErrorComponentDto | NotificationsListIdLteErrorComponentDto | NotificationsListTypeErrorComponentDto | NotificationsListTypeInErrorComponentDto;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListIdErrorComponentDto {
11
+ /**
12
+ * * `id` - id
13
+ */
14
+ attr: NotificationsListIdErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: NotificationsListIdErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListIdErrorComponentDtoAttrEnum {
22
+ Id = "id"
23
+ }
24
+ export declare enum NotificationsListIdErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListIdGtErrorComponentDto {
11
+ /**
12
+ * * `id__gt` - id__gt
13
+ */
14
+ attr: NotificationsListIdGtErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: NotificationsListIdGtErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListIdGtErrorComponentDtoAttrEnum {
22
+ IdGt = "id__gt"
23
+ }
24
+ export declare enum NotificationsListIdGtErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListIdGteErrorComponentDto {
11
+ /**
12
+ * * `id__gte` - id__gte
13
+ */
14
+ attr: NotificationsListIdGteErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: NotificationsListIdGteErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListIdGteErrorComponentDtoAttrEnum {
22
+ IdGte = "id__gte"
23
+ }
24
+ export declare enum NotificationsListIdGteErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListIdInErrorComponentDto {
11
+ /**
12
+ * * `id__in` - id__in
13
+ */
14
+ attr: NotificationsListIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: NotificationsListIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListIdInErrorComponentDtoAttrEnum {
22
+ IdIn = "id__in"
23
+ }
24
+ export declare enum NotificationsListIdInErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListIdLtErrorComponentDto {
11
+ /**
12
+ * * `id__lt` - id__lt
13
+ */
14
+ attr: NotificationsListIdLtErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: NotificationsListIdLtErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListIdLtErrorComponentDtoAttrEnum {
22
+ IdLt = "id__lt"
23
+ }
24
+ export declare enum NotificationsListIdLtErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListIdLteErrorComponentDto {
11
+ /**
12
+ * * `id__lte` - id__lte
13
+ */
14
+ attr: NotificationsListIdLteErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: NotificationsListIdLteErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListIdLteErrorComponentDtoAttrEnum {
22
+ IdLte = "id__lte"
23
+ }
24
+ export declare enum NotificationsListIdLteErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListTypeErrorComponentDto {
11
+ /**
12
+ * * `type` - type
13
+ */
14
+ attr: NotificationsListTypeErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid_choice` - invalid_choice
17
+ */
18
+ code: NotificationsListTypeErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListTypeErrorComponentDtoAttrEnum {
22
+ Type = "type"
23
+ }
24
+ export declare enum NotificationsListTypeErrorComponentDtoCodeEnum {
25
+ InvalidChoice = "invalid_choice"
26
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ export interface NotificationsListTypeInErrorComponentDto {
11
+ /**
12
+ * * `type__in` - type__in
13
+ */
14
+ attr: NotificationsListTypeInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `null_characters_not_allowed` - null_characters_not_allowed
17
+ */
18
+ code: NotificationsListTypeInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum NotificationsListTypeInErrorComponentDtoAttrEnum {
22
+ TypeIn = "type__in"
23
+ }
24
+ export declare enum NotificationsListTypeInErrorComponentDtoCodeEnum {
25
+ NullCharactersNotAllowed = "null_characters_not_allowed"
26
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { NotificationsListErrorDto } from "./notifications-list-error.dto";
11
+ import { ValidationErrorEnumDto } from "./validation-error-enum.dto";
12
+ export interface NotificationsListValidationErrorDto {
13
+ type: ValidationErrorEnumDto;
14
+ errors: Array<NotificationsListErrorDto>;
15
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { ParseErrorResponseDto } from "./parse-error-response.dto";
11
+ /**
12
+ * @type NotificationsReadCreateErrorResponse400Dto
13
+ * @export
14
+ */
15
+ export type NotificationsReadCreateErrorResponse400Dto = ParseErrorResponseDto;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { ParseErrorResponseDto } from "./parse-error-response.dto";
11
+ /**
12
+ * @type NotificationsRetrieveErrorResponse400Dto
13
+ * @export
14
+ */
15
+ export type NotificationsRetrieveErrorResponse400Dto = ParseErrorResponseDto;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { ParseErrorResponseDto } from "./parse-error-response.dto";
11
+ /**
12
+ * @type NotificationsUnreadCreateErrorResponse400Dto
13
+ * @export
14
+ */
15
+ export type NotificationsUnreadCreateErrorResponse400Dto = ParseErrorResponseDto;
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { NotifyDataUserDto } from "./notify-data-user.dto";
11
+ /**
12
+ * Representation of NotificationPayload
13
+ */
14
+ export interface NotifyDataNotificationPayloadDto {
15
+ triggered_by: NotifyDataUserDto | null;
16
+ serializer_type?: string;
17
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { NotifyDataUserDto } from "./notify-data-user.dto";
11
+ import { NotifyDataUserPeriodDto } from "./notify-data-user-period.dto";
12
+ /**
13
+ * Representation of UserPeriodPayload
14
+ */
15
+ export interface NotifyDataUserPeriodPayloadDto {
16
+ triggered_by: NotifyDataUserDto | null;
17
+ user_period: NotifyDataUserPeriodDto;
18
+ serializer_type?: string;
19
+ }
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ import { DateRangeFieldDto } from "./date-range-field.dto";
11
+ import { UserPeriodTypeEnumDto } from "./user-period-type-enum.dto";
12
+ import { NotifyDataUserDto } from "./notify-data-user.dto";
13
+ import { UserPeriodStatusEnumDto } from "./user-period-status-enum.dto";
14
+ /**
15
+ * Representation of UserPeriod
16
+ */
17
+ export interface NotifyDataUserPeriodDto {
18
+ id: number | null;
19
+ created: string;
20
+ modified: string;
21
+ user: NotifyDataUserDto;
22
+ status: UserPeriodStatusEnumDto;
23
+ status_updated_by_id: number | null;
24
+ status_updated: string | null;
25
+ period: DateRangeFieldDto;
26
+ type: UserPeriodTypeEnumDto;
27
+ file: string;
28
+ description: string;
29
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Delmar Api
3
+ *
4
+ *
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+ /**
11
+ * Representation of User
12
+ */
13
+ export interface NotifyDataUserDto {
14
+ id: number;
15
+ created: string;
16
+ modified: string;
17
+ first_name: string;
18
+ middle_name: string;
19
+ last_name: string;
20
+ email: string;
21
+ avatar: string;
22
+ department_id: number;
23
+ branch_id: number;
24
+ work_type_id: number;
25
+ location_id: number;
26
+ }