@kevisual/query 0.0.52 → 0.0.54

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.
@@ -215,6 +215,7 @@ type RouteInfo = {
215
215
  metadata?: {
216
216
  summary?: string;
217
217
  args?: Record<string, any>;
218
+ returns?: Record<string, any>;
218
219
  viewItem?: {
219
220
  type?: string;
220
221
  api?: {
@@ -231,6 +232,7 @@ type RouteInfo = {
231
232
  };
232
233
  type CreateQueryOptions = {
233
234
  removeViewItem?: boolean;
235
+ removeId?: boolean;
234
236
  before?: string;
235
237
  after?: string;
236
238
  };