@erp-galoper/types 1.0.1579 → 1.0.1580

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 (2) hide show
  1. package/openapi.ts +15 -5
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -21750,7 +21750,7 @@ export interface paths {
21750
21750
  get?: never;
21751
21751
  /**
21752
21752
  * Batch Update Notification Status
21753
- * @description Endpoint to batch mark notificationrecipients as read or unread
21753
+ * @description Endpoint to batch update notification read/view status
21754
21754
  *
21755
21755
  * Possible Responses:
21756
21756
  * - 200:
@@ -21758,7 +21758,6 @@ export interface paths {
21758
21758
  * - 400:
21759
21759
  * - ValidationError
21760
21760
  * -403:
21761
- * - userSettingsNotFound
21762
21761
  * - noModuleAccess
21763
21762
  * - 404:
21764
21763
  * - NotificationDoesNotExist
@@ -57289,10 +57288,21 @@ export interface components {
57289
57288
  };
57290
57289
  /** BatchUpdateStatus */
57291
57290
  BatchUpdateStatus: {
57292
- /** Notificationsids */
57291
+ /**
57292
+ * Notificationsids
57293
+ * @description List of Notification IDs to update.
57294
+ */
57293
57295
  notificationsIds: string[];
57294
- /** Isread */
57295
- isRead: boolean;
57296
+ /**
57297
+ * Isread
57298
+ * @description Set to true to mark as read. Cannot be used with isViewed.
57299
+ */
57300
+ isRead?: boolean | null;
57301
+ /**
57302
+ * Isviewed
57303
+ * @description Set to true to mark as viewed. Cannot be used with isRead.
57304
+ */
57305
+ isViewed?: boolean | null;
57296
57306
  };
57297
57307
  /** EventsListSchema */
57298
57308
  EventsListSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1579",
3
+ "version": "1.0.1580",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],