@rizom/brain 0.2.0-alpha.65 → 0.2.0-alpha.67
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/brain.js +1001 -991
- package/dist/deploy.js +4 -171
- package/dist/deploy.js.map +3 -197
- package/dist/entities.d.ts +5 -0
- package/dist/entities.js +92 -142
- package/dist/entities.js.map +12 -19
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/dist/interfaces.js +90 -140
- package/dist/interfaces.js.map +7 -14
- package/dist/plugins.d.ts +7 -0
- package/dist/plugins.js +72 -122
- package/dist/plugins.js.map +31 -32
- package/dist/services.js +92 -142
- package/dist/services.js.map +12 -19
- package/dist/site.js +161 -161
- package/dist/site.js.map +69 -72
- package/dist/templates.js +90 -140
- package/dist/templates.js.map +14 -21
- package/package.json +3 -2
package/dist/entities.d.ts
CHANGED
|
@@ -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.
|