@erp-galoper/types 1.0.1225 → 1.0.1227
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/openapi.ts +14 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -20342,8 +20342,9 @@ export interface paths {
|
|
|
20342
20342
|
* - noModuleAccess
|
|
20343
20343
|
* - 400:
|
|
20344
20344
|
* - ValidationError
|
|
20345
|
+
* - contentTypeDoesNotExist
|
|
20345
20346
|
* - 409:
|
|
20346
|
-
* -
|
|
20347
|
+
* - DuplicateNotificationSetting
|
|
20347
20348
|
* - 500:
|
|
20348
20349
|
* - internalServerError
|
|
20349
20350
|
*
|
|
@@ -52317,6 +52318,7 @@ export interface components {
|
|
|
52317
52318
|
emailEnabled: boolean;
|
|
52318
52319
|
/** Ingaloperenabled */
|
|
52319
52320
|
inGaloperEnabled: boolean;
|
|
52321
|
+
documentContentType: components["schemas"]["CombinedModelName"];
|
|
52320
52322
|
};
|
|
52321
52323
|
/** UpdateNotificationSetting */
|
|
52322
52324
|
UpdateNotificationSetting: {
|
|
@@ -52342,6 +52344,7 @@ export interface components {
|
|
|
52342
52344
|
emailEnabled: boolean | null;
|
|
52343
52345
|
/** Ingaloperenabled */
|
|
52344
52346
|
inGaloperEnabled: boolean | null;
|
|
52347
|
+
documentContentType: components["schemas"]["CombinedModelName"];
|
|
52345
52348
|
};
|
|
52346
52349
|
/** NotificationsList */
|
|
52347
52350
|
NotificationsList: {
|
|
@@ -52349,8 +52352,13 @@ export interface components {
|
|
|
52349
52352
|
/** Results */
|
|
52350
52353
|
results: components["schemas"]["RetrieveNotificationRecipient"][];
|
|
52351
52354
|
};
|
|
52352
|
-
/**
|
|
52353
|
-
|
|
52355
|
+
/** RetrieveNotification */
|
|
52356
|
+
RetrieveNotification: {
|
|
52357
|
+
/**
|
|
52358
|
+
* Id
|
|
52359
|
+
* Format: uuid
|
|
52360
|
+
*/
|
|
52361
|
+
id: string;
|
|
52354
52362
|
/** Title */
|
|
52355
52363
|
title: string;
|
|
52356
52364
|
/** Message */
|
|
@@ -52360,6 +52368,7 @@ export interface components {
|
|
|
52360
52368
|
* Format: date-time
|
|
52361
52369
|
*/
|
|
52362
52370
|
createdAt: string;
|
|
52371
|
+
notificationType: components["schemas"]["NotificationType"];
|
|
52363
52372
|
documentContentType: components["schemas"]["CombinedModelName"] | null;
|
|
52364
52373
|
/** Documentid */
|
|
52365
52374
|
documentId: string | null;
|
|
@@ -52371,7 +52380,7 @@ export interface components {
|
|
|
52371
52380
|
* Format: uuid
|
|
52372
52381
|
*/
|
|
52373
52382
|
id: string;
|
|
52374
|
-
notification: components["schemas"]["
|
|
52383
|
+
notification: components["schemas"]["RetrieveNotification"];
|
|
52375
52384
|
/** Isread */
|
|
52376
52385
|
isRead: boolean;
|
|
52377
52386
|
/** Readat */
|
|
@@ -93298,7 +93307,7 @@ export interface operations {
|
|
|
93298
93307
|
erp_settings_notificationsettings_views_list_notification_settings: {
|
|
93299
93308
|
parameters: {
|
|
93300
93309
|
query?: {
|
|
93301
|
-
/** @description Search notification setting by
|
|
93310
|
+
/** @description Search notification setting by notification type */
|
|
93302
93311
|
search?: string | null;
|
|
93303
93312
|
};
|
|
93304
93313
|
header?: never;
|