@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.
- package/README.md +2 -2
- package/api/api.d.ts +4 -1
- package/api/notifications-api.service.d.ts +123 -0
- package/api/notifications-api.serviceInterface.d.ts +76 -0
- package/esm2022/api/api.mjs +5 -1
- package/esm2022/api/branch-periods-api.service.mjs +3 -3
- package/esm2022/api/branches-api.service.mjs +3 -3
- package/esm2022/api/departments-api.service.mjs +3 -3
- package/esm2022/api/dismissal-reasons-api.service.mjs +3 -3
- package/esm2022/api/jira-client-api.service.mjs +3 -3
- package/esm2022/api/jira-instances-api.service.mjs +3 -3
- package/esm2022/api/locations-api.service.mjs +3 -3
- package/esm2022/api/notifications-api.service.mjs +448 -0
- package/esm2022/api/notifications-api.serviceInterface.mjs +2 -0
- package/esm2022/api/permission-data-api.service.mjs +3 -3
- package/esm2022/api/profile-api.service.mjs +3 -3
- package/esm2022/api/projects-api.service.mjs +3 -3
- package/esm2022/api/roles-api.service.mjs +3 -3
- package/esm2022/api/s3-api.service.mjs +3 -3
- package/esm2022/api/search-periods-api.service.mjs +3 -3
- package/esm2022/api/sso-api.service.mjs +3 -3
- package/esm2022/api/token-api.service.mjs +3 -3
- package/esm2022/api/user-capacities-api.service.mjs +3 -3
- package/esm2022/api/user-logins-api.service.mjs +3 -3
- package/esm2022/api/user-periods-api.service.mjs +3 -3
- package/esm2022/api/user-timezone-setting-api.service.mjs +3 -3
- package/esm2022/api/user-timezones-api.service.mjs +3 -3
- package/esm2022/api/users-api.service.mjs +3 -3
- package/esm2022/api/vendors-api.service.mjs +3 -3
- package/esm2022/api/who-am-i-api.service.mjs +3 -3
- package/esm2022/api/work-types-api.service.mjs +3 -3
- package/esm2022/api.module.mjs +4 -4
- package/esm2022/model/models.mjs +28 -1
- package/esm2022/model/notification-data.dto.mjs +2 -0
- package/esm2022/model/notification-type-enum.dto.mjs +30 -0
- package/esm2022/model/notification.dto.mjs +2 -0
- package/esm2022/model/notifications-delete-all-destroy-error-response400.dto.mjs +2 -0
- package/esm2022/model/notifications-list-created-gt-error-component.dto.mjs +18 -0
- package/esm2022/model/notifications-list-created-gte-error-component.dto.mjs +18 -0
- package/esm2022/model/notifications-list-created-lt-error-component.dto.mjs +18 -0
- package/esm2022/model/notifications-list-created-lte-error-component.dto.mjs +18 -0
- package/esm2022/model/notifications-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/notifications-list-error.dto.mjs +2 -0
- package/esm2022/model/notifications-list-id-error-component.dto.mjs +19 -0
- package/esm2022/model/notifications-list-id-gt-error-component.dto.mjs +19 -0
- package/esm2022/model/notifications-list-id-gte-error-component.dto.mjs +19 -0
- package/esm2022/model/notifications-list-id-in-error-component.dto.mjs +19 -0
- package/esm2022/model/notifications-list-id-lt-error-component.dto.mjs +19 -0
- package/esm2022/model/notifications-list-id-lte-error-component.dto.mjs +19 -0
- package/esm2022/model/notifications-list-type-error-component.dto.mjs +18 -0
- package/esm2022/model/notifications-list-type-in-error-component.dto.mjs +18 -0
- package/esm2022/model/notifications-list-validation-error.dto.mjs +2 -0
- package/esm2022/model/notifications-read-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/notifications-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/notifications-unread-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/notify-data-notification-payload.dto.mjs +2 -0
- package/esm2022/model/notify-data-user-period-payload.dto.mjs +2 -0
- package/esm2022/model/notify-data-user-period.dto.mjs +2 -0
- package/esm2022/model/notify-data-user.dto.mjs +11 -0
- package/esm2022/model/paginated-notification-list.dto.mjs +2 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +780 -78
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +27 -0
- package/model/notification-data.dto.d.ts +16 -0
- package/model/notification-type-enum.dto.d.ts +28 -0
- package/model/notification.dto.d.ts +22 -0
- package/model/notifications-delete-all-destroy-error-response400.dto.d.ts +15 -0
- package/model/notifications-list-created-gt-error-component.dto.d.ts +26 -0
- package/model/notifications-list-created-gte-error-component.dto.d.ts +26 -0
- package/model/notifications-list-created-lt-error-component.dto.d.ts +26 -0
- package/model/notifications-list-created-lte-error-component.dto.d.ts +26 -0
- package/model/notifications-list-error-response400.dto.d.ts +16 -0
- package/model/notifications-list-error.dto.d.ts +26 -0
- package/model/notifications-list-id-error-component.dto.d.ts +27 -0
- package/model/notifications-list-id-gt-error-component.dto.d.ts +27 -0
- package/model/notifications-list-id-gte-error-component.dto.d.ts +27 -0
- package/model/notifications-list-id-in-error-component.dto.d.ts +27 -0
- package/model/notifications-list-id-lt-error-component.dto.d.ts +27 -0
- package/model/notifications-list-id-lte-error-component.dto.d.ts +27 -0
- package/model/notifications-list-type-error-component.dto.d.ts +26 -0
- package/model/notifications-list-type-in-error-component.dto.d.ts +26 -0
- package/model/notifications-list-validation-error.dto.d.ts +15 -0
- package/model/notifications-read-create-error-response400.dto.d.ts +15 -0
- package/model/notifications-retrieve-error-response400.dto.d.ts +15 -0
- package/model/notifications-unread-create-error-response400.dto.d.ts +15 -0
- package/model/notify-data-notification-payload.dto.d.ts +17 -0
- package/model/notify-data-user-period-payload.dto.d.ts +19 -0
- package/model/notify-data-user-period.dto.d.ts +29 -0
- package/model/notify-data-user.dto.d.ts +26 -0
- package/model/paginated-notification-list.dto.d.ts +16 -0
- package/package.json +2 -2
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.