@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.
@@ -173,6 +173,10 @@ interface SearchResult<T extends BaseEntity = BaseEntity> {
173
173
  /**
174
174
  * Normalized system_create input shape used by plugin create interceptors.
175
175
  */
176
+ interface CreateCoverImageInput {
177
+ generate?: boolean | undefined;
178
+ prompt?: string | undefined;
179
+ }
176
180
  interface CreateInput {
177
181
  entityType: string;
178
182
  prompt?: string;
@@ -181,6 +185,7 @@ interface CreateInput {
181
185
  url?: string;
182
186
  targetEntityType?: string;
183
187
  targetEntityId?: string;
188
+ coverImage?: boolean | CreateCoverImageInput;
184
189
  }
185
190
  /**
186
191
  * Minimal caller context forwarded to plugin create interceptors.