@erp-galoper/types 1.0.1907 → 1.0.1908
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 +4 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -2380,7 +2380,7 @@ export interface paths {
|
|
|
2380
2380
|
};
|
|
2381
2381
|
/**
|
|
2382
2382
|
* Get Logs
|
|
2383
|
-
* @description Endpoint to get logs for a specific model.
|
|
2383
|
+
* @description Endpoint to get logs for a specific model or all models when logModelName is omitted.
|
|
2384
2384
|
*
|
|
2385
2385
|
* Possible Responses:
|
|
2386
2386
|
* - 200: LogsResponseSchema
|
|
@@ -67603,8 +67603,9 @@ export interface operations {
|
|
|
67603
67603
|
};
|
|
67604
67604
|
common_views_get_logs: {
|
|
67605
67605
|
parameters: {
|
|
67606
|
-
query
|
|
67607
|
-
|
|
67606
|
+
query?: {
|
|
67607
|
+
/** @description Filter by module/model. When omitted, logs from all modules are returned. */
|
|
67608
|
+
logModelName?: components["schemas"]["LogModelName"] | null;
|
|
67608
67609
|
logType?: "Created" | "Changed" | "Deleted";
|
|
67609
67610
|
/** @description by default periodType is set to date filtration in user settings, Period type: thisMonth, thisYear, lastMonth, custom, ... */
|
|
67610
67611
|
periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
|