@erp-galoper/types 1.0.1359 → 1.0.1361

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 +27 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -55217,7 +55217,12 @@ export interface components {
55217
55217
  * NotificationType
55218
55218
  * @enum {string}
55219
55219
  */
55220
- NotificationType: "taskAssignment" | "eventInvitation" | "eventRescheduled" | "eventUpdated" | "eventCancelled";
55220
+ NotificationType: "taskAssignment" | "eventInvitation" | "eventRescheduled" | "eventUpdated" | "eventCancelled" | "salesInvoicePaymentDue" | "salesOrderDeliveryDue" | "salesQuotationExpiry" | "purchaseRequestForQuotationExpiry" | "purchaseRequisitionExpiry" | "purchaseInvoicePaymentDue" | "purchaseOrderReceivingDue" | "purchaseQuotationExpiry";
55221
+ /**
55222
+ * ReminderInterval
55223
+ * @enum {string}
55224
+ */
55225
+ ReminderInterval: "noReminder" | "sameDay" | "1DayBefore" | "3DaysBefore" | "1WeekBefore" | "10DaysBefore" | "2WeeksBefore" | "1MonthBefore" | "customInterval";
55221
55226
  /** RetrieveNotificationSetting */
55222
55227
  RetrieveNotificationSetting: {
55223
55228
  /**
@@ -55233,6 +55238,25 @@ export interface components {
55233
55238
  /** Ingaloperenabled */
55234
55239
  inGaloperEnabled: boolean;
55235
55240
  documentContentType: components["schemas"]["CombinedModelName"];
55241
+ /** Reminderconfigurations */
55242
+ reminderConfigurations?: components["schemas"]["RetrieveReminderConfiguration"][];
55243
+ };
55244
+ /** RetrieveReminderConfiguration */
55245
+ RetrieveReminderConfiguration: {
55246
+ /**
55247
+ * Id
55248
+ * Format: uuid
55249
+ */
55250
+ id: string;
55251
+ reminderInterval: components["schemas"]["ReminderInterval"] | null;
55252
+ /** Customreminderdays */
55253
+ customReminderDays: number | null;
55254
+ };
55255
+ /** CreateUpdateReminderConfiguration */
55256
+ CreateUpdateReminderConfiguration: {
55257
+ reminderInterval: components["schemas"]["ReminderInterval"] | null;
55258
+ /** Customreminderdays */
55259
+ customReminderDays?: number | null;
55236
55260
  };
55237
55261
  /** UpdateNotificationSetting */
55238
55262
  UpdateNotificationSetting: {
@@ -55251,6 +55275,8 @@ export interface components {
55251
55275
  * @default false
55252
55276
  */
55253
55277
  inGaloperEnabled: boolean | null;
55278
+ /** Remindersconfigurations */
55279
+ remindersConfigurations?: components["schemas"]["CreateUpdateReminderConfiguration"][];
55254
55280
  };
55255
55281
  /** NotificationSettingList */
55256
55282
  NotificationSettingList: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1359",
3
+ "version": "1.0.1361",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],