@erp-galoper/types 1.0.1985 → 1.0.1986
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 +61 -44
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -22657,7 +22657,7 @@ export interface paths {
|
|
|
22657
22657
|
patch?: never;
|
|
22658
22658
|
trace?: never;
|
|
22659
22659
|
};
|
|
22660
|
-
"/api/v1/appointments/
|
|
22660
|
+
"/api/v1/appointments/conflicts/": {
|
|
22661
22661
|
parameters: {
|
|
22662
22662
|
query?: never;
|
|
22663
22663
|
header?: never;
|
|
@@ -22668,9 +22668,11 @@ export interface paths {
|
|
|
22668
22668
|
put?: never;
|
|
22669
22669
|
/**
|
|
22670
22670
|
* Check Appointment Conflicts
|
|
22671
|
-
* @description Check scheduling conflicts
|
|
22671
|
+
* @description Check scheduling conflicts before saving an appointment (create or edit).
|
|
22672
22672
|
*
|
|
22673
|
-
*
|
|
22673
|
+
* Pass appointment in the payload when editing to exclude the current record from overlap checks.
|
|
22674
|
+
*
|
|
22675
|
+
* Permission key: appointment = ["add"]
|
|
22674
22676
|
*/
|
|
22675
22677
|
post: operations["appointment_views_check_appointment_conflicts"];
|
|
22676
22678
|
delete?: never;
|
|
@@ -31060,47 +31062,66 @@ export interface components {
|
|
|
31060
31062
|
* @enum {string}
|
|
31061
31063
|
*/
|
|
31062
31064
|
LogType: "Created" | "Changed" | "Deleted";
|
|
31063
|
-
/**
|
|
31064
|
-
|
|
31065
|
+
/**
|
|
31066
|
+
* LogDataType
|
|
31067
|
+
* @enum {string}
|
|
31068
|
+
*/
|
|
31069
|
+
LogDataType: "string" | "number" | "boolean" | "datetime" | "date" | "object" | "null";
|
|
31070
|
+
/** LogEntry */
|
|
31071
|
+
LogEntry: {
|
|
31065
31072
|
/** Id */
|
|
31066
31073
|
id: string;
|
|
31067
|
-
/** Number */
|
|
31068
|
-
number?: string | number | null;
|
|
31069
|
-
/** Name */
|
|
31070
|
-
name?: string | number | null;
|
|
31071
|
-
};
|
|
31072
|
-
/** ItemChange */
|
|
31073
|
-
ItemChange: {
|
|
31074
|
-
/** Itemid */
|
|
31075
|
-
itemId: string;
|
|
31076
|
-
/** Action */
|
|
31077
|
-
action: string;
|
|
31078
31074
|
/**
|
|
31079
|
-
*
|
|
31080
|
-
*
|
|
31075
|
+
* Date
|
|
31076
|
+
* Format: date-time
|
|
31081
31077
|
*/
|
|
31082
|
-
|
|
31083
|
-
};
|
|
31084
|
-
/** LogEntry */
|
|
31085
|
-
LogEntry: {
|
|
31086
|
-
instance: components["schemas"]["Instance"];
|
|
31087
|
-
/** Historyid */
|
|
31088
|
-
historyId: string;
|
|
31078
|
+
date: string;
|
|
31089
31079
|
logType: components["schemas"]["LogType"];
|
|
31080
|
+
modelName: components["schemas"]["LogModelName"];
|
|
31090
31081
|
user?: components["schemas"]["UserSharedSchema"] | null;
|
|
31082
|
+
resource: components["schemas"]["LogResource"];
|
|
31091
31083
|
/**
|
|
31092
|
-
*
|
|
31093
|
-
*
|
|
31084
|
+
* Header
|
|
31085
|
+
* @default []
|
|
31094
31086
|
*/
|
|
31095
|
-
|
|
31087
|
+
header: components["schemas"]["LogFieldChange"][];
|
|
31088
|
+
/**
|
|
31089
|
+
* Items
|
|
31090
|
+
* @default []
|
|
31091
|
+
*/
|
|
31092
|
+
items: components["schemas"]["LogItemChange"][];
|
|
31093
|
+
};
|
|
31094
|
+
/** LogFieldChange */
|
|
31095
|
+
LogFieldChange: {
|
|
31096
|
+
/** Field */
|
|
31097
|
+
field: string;
|
|
31098
|
+
/** Old */
|
|
31099
|
+
old?: unknown | null;
|
|
31100
|
+
/** New */
|
|
31101
|
+
new?: unknown | null;
|
|
31102
|
+
/** @default string */
|
|
31103
|
+
dataType: components["schemas"]["LogDataType"];
|
|
31104
|
+
};
|
|
31105
|
+
/** LogItemChange */
|
|
31106
|
+
LogItemChange: {
|
|
31107
|
+
/** Id */
|
|
31108
|
+
id: string;
|
|
31109
|
+
/** Action */
|
|
31110
|
+
action: string;
|
|
31096
31111
|
/**
|
|
31097
31112
|
* Changes
|
|
31098
31113
|
* @default []
|
|
31099
31114
|
*/
|
|
31100
|
-
changes: components["schemas"]["
|
|
31101
|
-
|
|
31102
|
-
|
|
31103
|
-
|
|
31115
|
+
changes: components["schemas"]["LogFieldChange"][];
|
|
31116
|
+
};
|
|
31117
|
+
/** LogResource */
|
|
31118
|
+
LogResource: {
|
|
31119
|
+
/** Id */
|
|
31120
|
+
id: string;
|
|
31121
|
+
/** Number */
|
|
31122
|
+
number?: string | number | null;
|
|
31123
|
+
/** Name */
|
|
31124
|
+
name?: string | number | null;
|
|
31104
31125
|
};
|
|
31105
31126
|
/** LogsResponseSchema */
|
|
31106
31127
|
LogsResponseSchema: {
|
|
@@ -31111,15 +31132,6 @@ export interface components {
|
|
|
31111
31132
|
*/
|
|
31112
31133
|
results: components["schemas"]["LogEntry"][];
|
|
31113
31134
|
};
|
|
31114
|
-
/** modelChange */
|
|
31115
|
-
modelChange: {
|
|
31116
|
-
/** Field */
|
|
31117
|
-
field: string;
|
|
31118
|
-
/** Old */
|
|
31119
|
-
old?: string | null;
|
|
31120
|
-
/** New */
|
|
31121
|
-
new?: string | null;
|
|
31122
|
-
};
|
|
31123
31135
|
/** LogTypeCount */
|
|
31124
31136
|
LogTypeCount: {
|
|
31125
31137
|
/**
|
|
@@ -31542,6 +31554,8 @@ export interface components {
|
|
|
31542
31554
|
task: boolean;
|
|
31543
31555
|
/** Event */
|
|
31544
31556
|
event: boolean;
|
|
31557
|
+
/** Appointment */
|
|
31558
|
+
appointment: boolean;
|
|
31545
31559
|
/** Maintenance */
|
|
31546
31560
|
maintenance: boolean;
|
|
31547
31561
|
};
|
|
@@ -63685,6 +63699,11 @@ export interface components {
|
|
|
63685
63699
|
};
|
|
63686
63700
|
/** CheckAppointmentConflictsSchema */
|
|
63687
63701
|
CheckAppointmentConflictsSchema: {
|
|
63702
|
+
/**
|
|
63703
|
+
* Appointment
|
|
63704
|
+
* @description Existing appointment ID to exclude when editing. Omit on create.
|
|
63705
|
+
*/
|
|
63706
|
+
appointment?: string | null;
|
|
63688
63707
|
/**
|
|
63689
63708
|
* Scheduleddatetime
|
|
63690
63709
|
* Format: date-time
|
|
@@ -110530,9 +110549,7 @@ export interface operations {
|
|
|
110530
110549
|
parameters: {
|
|
110531
110550
|
query?: never;
|
|
110532
110551
|
header?: never;
|
|
110533
|
-
path
|
|
110534
|
-
id: string;
|
|
110535
|
-
};
|
|
110552
|
+
path?: never;
|
|
110536
110553
|
cookie?: never;
|
|
110537
110554
|
};
|
|
110538
110555
|
requestBody: {
|