@erp-galoper/types 1.0.1225 → 1.0.1226

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 +9 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -52349,8 +52349,13 @@ export interface components {
52349
52349
  /** Results */
52350
52350
  results: components["schemas"]["RetrieveNotificationRecipient"][];
52351
52351
  };
52352
- /** RetrievNotification */
52353
- RetrievNotification: {
52352
+ /** RetrieveNotification */
52353
+ RetrieveNotification: {
52354
+ /**
52355
+ * Id
52356
+ * Format: uuid
52357
+ */
52358
+ id: string;
52354
52359
  /** Title */
52355
52360
  title: string;
52356
52361
  /** Message */
@@ -52360,6 +52365,7 @@ export interface components {
52360
52365
  * Format: date-time
52361
52366
  */
52362
52367
  createdAt: string;
52368
+ notificationType: components["schemas"]["NotificationType"];
52363
52369
  documentContentType: components["schemas"]["CombinedModelName"] | null;
52364
52370
  /** Documentid */
52365
52371
  documentId: string | null;
@@ -52371,7 +52377,7 @@ export interface components {
52371
52377
  * Format: uuid
52372
52378
  */
52373
52379
  id: string;
52374
- notification: components["schemas"]["RetrievNotification"];
52380
+ notification: components["schemas"]["RetrieveNotification"];
52375
52381
  /** Isread */
52376
52382
  isRead: boolean;
52377
52383
  /** Readat */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1225",
3
+ "version": "1.0.1226",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],