@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
@@ -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 { NotificationDto } from "./notification.dto";
11
+ export interface PaginatedNotificationListDto {
12
+ count: number;
13
+ results: Array<NotificationDto>;
14
+ next?: string | null;
15
+ previous?: string | null;
16
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.28",
4
- "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.35)",
3
+ "version": "0.0.30",
4
+ "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.36)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",