@rizom/brain 0.2.0-alpha.64 → 0.2.0-alpha.66

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/dist/plugins.d.ts CHANGED
@@ -131,6 +131,10 @@ interface SearchResult<T extends BaseEntity = BaseEntity> {
131
131
  /**
132
132
  * Normalized system_create input shape used by plugin create interceptors.
133
133
  */
134
+ interface CreateCoverImageInput {
135
+ generate?: boolean | undefined;
136
+ prompt?: string | undefined;
137
+ }
134
138
  interface CreateInput {
135
139
  entityType: string;
136
140
  prompt?: string;
@@ -139,6 +143,7 @@ interface CreateInput {
139
143
  url?: string;
140
144
  targetEntityType?: string;
141
145
  targetEntityId?: string;
146
+ coverImage?: boolean | CreateCoverImageInput;
142
147
  }
143
148
  /**
144
149
  * Minimal caller context forwarded to plugin create interceptors.