@stacksjs/orm 0.70.335 → 0.70.336

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.
@@ -110,6 +110,7 @@ declare interface SearchableTraitConfig {
110
110
  filterable?: string[]
111
111
  shape?: (model: any) => Record<string, unknown> | null | undefined | Promise<Record<string, unknown> | null | undefined>
112
112
  shapeMany?: (models: any[]) => Record<string, unknown>[] | Promise<Record<string, unknown>[]>
113
+ hidden?: Set<string>
113
114
  queueable?: boolean
114
115
  }
115
116
  export declare interface TraitMethods {