@snaptrude/plugin-core 0.2.6 → 0.2.8

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.
@@ -0,0 +1,2155 @@
1
+ import * as z from "zod";
2
+ import type { PluginApiReturn } from "../../types";
3
+ declare const JsonPrimitive: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
4
+ type JsonValue = z.infer<typeof JsonPrimitive> | JsonValue[] | {
5
+ [key: string]: JsonValue;
6
+ };
7
+ declare const JsonValue: z.ZodType<JsonValue>;
8
+ export declare const PluginAIInspirationRunMode: z.ZodEnum<{
9
+ blocking: "blocking";
10
+ job: "job";
11
+ }>;
12
+ export type PluginAIInspirationRunMode = z.infer<typeof PluginAIInspirationRunMode>;
13
+ export declare const PluginAIInspirationOutputKind: z.ZodEnum<{
14
+ source: "source";
15
+ image: "image";
16
+ video: "video";
17
+ }>;
18
+ export type PluginAIInspirationOutputKind = z.infer<typeof PluginAIInspirationOutputKind>;
19
+ export declare const PluginAIInspirationModelOutput: z.ZodEnum<{
20
+ image: "image";
21
+ video: "video";
22
+ }>;
23
+ export type PluginAIInspirationModelOutput = z.infer<typeof PluginAIInspirationModelOutput>;
24
+ export declare const PluginAIInspirationRuntimeProvider: z.ZodEnum<{
25
+ gpt: "gpt";
26
+ fal: "fal";
27
+ }>;
28
+ export type PluginAIInspirationRuntimeProvider = z.infer<typeof PluginAIInspirationRuntimeProvider>;
29
+ export declare const PluginAIInspirationPromptStrategy: z.ZodEnum<{
30
+ "gpt-image": "gpt-image";
31
+ "fal-image": "fal-image";
32
+ "fal-video": "fal-video";
33
+ }>;
34
+ export type PluginAIInspirationPromptStrategy = z.infer<typeof PluginAIInspirationPromptStrategy>;
35
+ export declare const PluginAIInspirationShapeKind: z.ZodEnum<{
36
+ image: "image";
37
+ video: "video";
38
+ view: "view";
39
+ }>;
40
+ export type PluginAIInspirationShapeKind = z.infer<typeof PluginAIInspirationShapeKind>;
41
+ export declare const PluginAIInspirationVideoMode: z.ZodEnum<{
42
+ animate: "animate";
43
+ references: "references";
44
+ keyframes: "keyframes";
45
+ }>;
46
+ export type PluginAIInspirationVideoMode = z.infer<typeof PluginAIInspirationVideoMode>;
47
+ export declare const PluginAIInspirationVideoMotion: z.ZodEnum<{
48
+ auto: "auto";
49
+ "slow-dolly": "slow-dolly";
50
+ "subtle-orbit": "subtle-orbit";
51
+ reveal: "reveal";
52
+ }>;
53
+ export type PluginAIInspirationVideoMotion = z.infer<typeof PluginAIInspirationVideoMotion>;
54
+ export declare const PluginAIInspirationVideoDuration: z.ZodEnum<{
55
+ "4s": "4s";
56
+ "6s": "6s";
57
+ "8s": "8s";
58
+ }>;
59
+ export type PluginAIInspirationVideoDuration = z.infer<typeof PluginAIInspirationVideoDuration>;
60
+ export declare const PluginAIInspirationJobStatus: z.ZodEnum<{
61
+ queued: "queued";
62
+ running: "running";
63
+ completed: "completed";
64
+ failed: "failed";
65
+ cancelled: "cancelled";
66
+ }>;
67
+ export type PluginAIInspirationJobStatus = z.infer<typeof PluginAIInspirationJobStatus>;
68
+ export declare const PluginAIInspirationWorkflowRunState: z.ZodEnum<{
69
+ running: "running";
70
+ failed: "failed";
71
+ current: "current";
72
+ stale: "stale";
73
+ superseded: "superseded";
74
+ }>;
75
+ export type PluginAIInspirationWorkflowRunState = z.infer<typeof PluginAIInspirationWorkflowRunState>;
76
+ export declare const PluginAIInspirationRegionHint: z.ZodObject<{
77
+ x: z.ZodNumber;
78
+ y: z.ZodNumber;
79
+ w: z.ZodNumber;
80
+ h: z.ZodNumber;
81
+ }, z.core.$strip>;
82
+ export type PluginAIInspirationRegionHint = z.infer<typeof PluginAIInspirationRegionHint>;
83
+ export declare const PluginAIInspirationPoint: z.ZodObject<{
84
+ x: z.ZodNumber;
85
+ y: z.ZodNumber;
86
+ }, z.core.$strip>;
87
+ export type PluginAIInspirationPoint = z.infer<typeof PluginAIInspirationPoint>;
88
+ export declare const PluginAIInspirationTextAnnotation: z.ZodObject<{
89
+ text: z.ZodString;
90
+ x: z.ZodOptional<z.ZodNumber>;
91
+ y: z.ZodOptional<z.ZodNumber>;
92
+ }, z.core.$strip>;
93
+ export type PluginAIInspirationTextAnnotation = z.infer<typeof PluginAIInspirationTextAnnotation>;
94
+ export declare const PluginAIInspirationSketchGuidance: z.ZodObject<{
95
+ visualShapeIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
96
+ textAnnotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
97
+ text: z.ZodString;
98
+ x: z.ZodOptional<z.ZodNumber>;
99
+ y: z.ZodOptional<z.ZodNumber>;
100
+ }, z.core.$strip>>>;
101
+ }, z.core.$strip>;
102
+ export type PluginAIInspirationSketchGuidance = z.infer<typeof PluginAIInspirationSketchGuidance>;
103
+ export declare const PluginAIInspirationSiteOptions: z.ZodObject<{
104
+ includeSatellite: z.ZodOptional<z.ZodBoolean>;
105
+ includeStreetView: z.ZodOptional<z.ZodBoolean>;
106
+ includeAerial: z.ZodOptional<z.ZodBoolean>;
107
+ aerialBearing: z.ZodOptional<z.ZodNumber>;
108
+ aerialPitch: z.ZodOptional<z.ZodNumber>;
109
+ selectedDiagramIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
110
+ location: z.ZodOptional<z.ZodObject<{
111
+ lat: z.ZodNumber;
112
+ lng: z.ZodNumber;
113
+ }, z.core.$strip>>;
114
+ }, z.core.$strip>;
115
+ export type PluginAIInspirationSiteOptions = z.infer<typeof PluginAIInspirationSiteOptions>;
116
+ export declare const PluginAIInspirationAppliedPreset: z.ZodObject<{
117
+ source: z.ZodEnum<{
118
+ curated: "curated";
119
+ user: "user";
120
+ }>;
121
+ presetId: z.ZodString;
122
+ name: z.ZodString;
123
+ savedPresetKind: z.ZodOptional<z.ZodEnum<{
124
+ prompt: "prompt";
125
+ style: "style";
126
+ }>>;
127
+ stylePrompt: z.ZodOptional<z.ZodString>;
128
+ modelId: z.ZodOptional<z.ZodString>;
129
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
130
+ url: z.ZodString;
131
+ label: z.ZodOptional<z.ZodString>;
132
+ weight: z.ZodOptional<z.ZodNumber>;
133
+ }, z.core.$strip>>>;
134
+ siteDefaults: z.ZodOptional<z.ZodObject<{
135
+ includeSatellite: z.ZodOptional<z.ZodBoolean>;
136
+ includeStreetView: z.ZodOptional<z.ZodBoolean>;
137
+ includeAerial: z.ZodOptional<z.ZodBoolean>;
138
+ }, z.core.$strip>>;
139
+ }, z.core.$strip>;
140
+ export type PluginAIInspirationAppliedPreset = z.infer<typeof PluginAIInspirationAppliedPreset>;
141
+ export declare const PluginAIInspirationVideoOptions: z.ZodObject<{
142
+ mode: z.ZodOptional<z.ZodEnum<{
143
+ animate: "animate";
144
+ references: "references";
145
+ keyframes: "keyframes";
146
+ }>>;
147
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
148
+ motion: z.ZodOptional<z.ZodEnum<{
149
+ auto: "auto";
150
+ "slow-dolly": "slow-dolly";
151
+ "subtle-orbit": "subtle-orbit";
152
+ reveal: "reveal";
153
+ }>>;
154
+ duration: z.ZodOptional<z.ZodEnum<{
155
+ "4s": "4s";
156
+ "6s": "6s";
157
+ "8s": "8s";
158
+ }>>;
159
+ }, z.core.$strip>;
160
+ export type PluginAIInspirationVideoOptions = z.infer<typeof PluginAIInspirationVideoOptions>;
161
+ export declare const PluginAIInspirationModel: z.ZodObject<{
162
+ id: z.ZodString;
163
+ label: z.ZodString;
164
+ supportsMultiImage: z.ZodBoolean;
165
+ output: z.ZodEnum<{
166
+ image: "image";
167
+ video: "video";
168
+ }>;
169
+ isDefault: z.ZodOptional<z.ZodBoolean>;
170
+ }, z.core.$strip>;
171
+ export type PluginAIInspirationModel = z.infer<typeof PluginAIInspirationModel>;
172
+ export declare const PluginAIInspirationModelCapability: z.ZodObject<{
173
+ id: z.ZodString;
174
+ output: z.ZodEnum<{
175
+ image: "image";
176
+ video: "video";
177
+ }>;
178
+ provider: z.ZodEnum<{
179
+ gpt: "gpt";
180
+ fal: "fal";
181
+ }>;
182
+ supportsRegionEdit: z.ZodBoolean;
183
+ supportsReferenceImages: z.ZodBoolean;
184
+ supportsStylePresets: z.ZodBoolean;
185
+ supportsSiteContext: z.ZodBoolean;
186
+ supportsSketchGuidance: z.ZodBoolean;
187
+ supportsKeyframes: z.ZodBoolean;
188
+ maxExtraImages: z.ZodNumber;
189
+ promptStrategy: z.ZodEnum<{
190
+ "gpt-image": "gpt-image";
191
+ "fal-image": "fal-image";
192
+ "fal-video": "fal-video";
193
+ }>;
194
+ }, z.core.$strip>;
195
+ export type PluginAIInspirationModelCapability = z.infer<typeof PluginAIInspirationModelCapability>;
196
+ export declare const PluginAIInspirationListModelsResult: z.ZodObject<{
197
+ defaultModelId: z.ZodString;
198
+ models: z.ZodArray<z.ZodObject<{
199
+ id: z.ZodString;
200
+ label: z.ZodString;
201
+ supportsMultiImage: z.ZodBoolean;
202
+ output: z.ZodEnum<{
203
+ image: "image";
204
+ video: "video";
205
+ }>;
206
+ isDefault: z.ZodOptional<z.ZodBoolean>;
207
+ }, z.core.$strip>>;
208
+ }, z.core.$strip>;
209
+ export type PluginAIInspirationListModelsResult = z.infer<typeof PluginAIInspirationListModelsResult>;
210
+ export declare const PluginAIInspirationGetModelCapabilitiesArgs: z.ZodObject<{
211
+ modelId: z.ZodString;
212
+ }, z.core.$strip>;
213
+ export type PluginAIInspirationGetModelCapabilitiesArgs = z.infer<typeof PluginAIInspirationGetModelCapabilitiesArgs>;
214
+ export declare const PluginAIInspirationGetModelCapabilitiesResult: z.ZodObject<{
215
+ capability: z.ZodObject<{
216
+ id: z.ZodString;
217
+ output: z.ZodEnum<{
218
+ image: "image";
219
+ video: "video";
220
+ }>;
221
+ provider: z.ZodEnum<{
222
+ gpt: "gpt";
223
+ fal: "fal";
224
+ }>;
225
+ supportsRegionEdit: z.ZodBoolean;
226
+ supportsReferenceImages: z.ZodBoolean;
227
+ supportsStylePresets: z.ZodBoolean;
228
+ supportsSiteContext: z.ZodBoolean;
229
+ supportsSketchGuidance: z.ZodBoolean;
230
+ supportsKeyframes: z.ZodBoolean;
231
+ maxExtraImages: z.ZodNumber;
232
+ promptStrategy: z.ZodEnum<{
233
+ "gpt-image": "gpt-image";
234
+ "fal-image": "fal-image";
235
+ "fal-video": "fal-video";
236
+ }>;
237
+ }, z.core.$strip>;
238
+ }, z.core.$strip>;
239
+ export type PluginAIInspirationGetModelCapabilitiesResult = z.infer<typeof PluginAIInspirationGetModelCapabilitiesResult>;
240
+ export declare const PluginAIInspirationShapeRef: z.ZodObject<{
241
+ shapeId: z.ZodString;
242
+ assetId: z.ZodOptional<z.ZodString>;
243
+ kind: z.ZodEnum<{
244
+ image: "image";
245
+ video: "video";
246
+ view: "view";
247
+ }>;
248
+ name: z.ZodOptional<z.ZodString>;
249
+ width: z.ZodOptional<z.ZodNumber>;
250
+ height: z.ZodOptional<z.ZodNumber>;
251
+ outputType: z.ZodOptional<z.ZodEnum<{
252
+ source: "source";
253
+ image: "image";
254
+ video: "video";
255
+ }>>;
256
+ sourceUrl: z.ZodOptional<z.ZodString>;
257
+ }, z.core.$strip>;
258
+ export type PluginAIInspirationShapeRef = z.infer<typeof PluginAIInspirationShapeRef>;
259
+ export declare const PluginAIInspirationListSourcesArgs: z.ZodObject<{
260
+ includeGenerated: z.ZodOptional<z.ZodBoolean>;
261
+ includeSourceUrl: z.ZodOptional<z.ZodBoolean>;
262
+ }, z.core.$strip>;
263
+ export type PluginAIInspirationListSourcesArgs = z.infer<typeof PluginAIInspirationListSourcesArgs>;
264
+ export declare const PluginAIInspirationListSourcesResult: z.ZodObject<{
265
+ sources: z.ZodArray<z.ZodObject<{
266
+ shapeId: z.ZodString;
267
+ assetId: z.ZodOptional<z.ZodString>;
268
+ kind: z.ZodEnum<{
269
+ image: "image";
270
+ video: "video";
271
+ view: "view";
272
+ }>;
273
+ name: z.ZodOptional<z.ZodString>;
274
+ width: z.ZodOptional<z.ZodNumber>;
275
+ height: z.ZodOptional<z.ZodNumber>;
276
+ outputType: z.ZodOptional<z.ZodEnum<{
277
+ source: "source";
278
+ image: "image";
279
+ video: "video";
280
+ }>>;
281
+ sourceUrl: z.ZodOptional<z.ZodString>;
282
+ }, z.core.$strip>>;
283
+ }, z.core.$strip>;
284
+ export type PluginAIInspirationListSourcesResult = z.infer<typeof PluginAIInspirationListSourcesResult>;
285
+ export declare const PluginAIInspirationGetSelectionResult: z.ZodObject<{
286
+ selectedShapeIds: z.ZodArray<z.ZodString>;
287
+ sources: z.ZodArray<z.ZodObject<{
288
+ shapeId: z.ZodString;
289
+ assetId: z.ZodOptional<z.ZodString>;
290
+ kind: z.ZodEnum<{
291
+ image: "image";
292
+ video: "video";
293
+ view: "view";
294
+ }>;
295
+ name: z.ZodOptional<z.ZodString>;
296
+ width: z.ZodOptional<z.ZodNumber>;
297
+ height: z.ZodOptional<z.ZodNumber>;
298
+ outputType: z.ZodOptional<z.ZodEnum<{
299
+ source: "source";
300
+ image: "image";
301
+ video: "video";
302
+ }>>;
303
+ sourceUrl: z.ZodOptional<z.ZodString>;
304
+ }, z.core.$strip>>;
305
+ }, z.core.$strip>;
306
+ export type PluginAIInspirationGetSelectionResult = z.infer<typeof PluginAIInspirationGetSelectionResult>;
307
+ export declare const PluginAIInspirationPresetReferenceImage: z.ZodObject<{
308
+ url: z.ZodString;
309
+ label: z.ZodOptional<z.ZodString>;
310
+ weight: z.ZodOptional<z.ZodNumber>;
311
+ }, z.core.$strip>;
312
+ export type PluginAIInspirationPresetReferenceImage = z.infer<typeof PluginAIInspirationPresetReferenceImage>;
313
+ export declare const PluginAIInspirationPreset: z.ZodObject<{
314
+ id: z.ZodString;
315
+ name: z.ZodString;
316
+ source: z.ZodEnum<{
317
+ curated: "curated";
318
+ user: "user";
319
+ }>;
320
+ modelId: z.ZodString;
321
+ categoryId: z.ZodOptional<z.ZodString>;
322
+ categoryLabel: z.ZodOptional<z.ZodString>;
323
+ description: z.ZodOptional<z.ZodString>;
324
+ previewImageUrl: z.ZodOptional<z.ZodString>;
325
+ prompt: z.ZodOptional<z.ZodString>;
326
+ stylePrompt: z.ZodOptional<z.ZodString>;
327
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
328
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
329
+ url: z.ZodString;
330
+ label: z.ZodOptional<z.ZodString>;
331
+ weight: z.ZodOptional<z.ZodNumber>;
332
+ }, z.core.$strip>>>;
333
+ siteDefaults: z.ZodOptional<z.ZodOptional<z.ZodObject<{
334
+ includeSatellite: z.ZodOptional<z.ZodBoolean>;
335
+ includeStreetView: z.ZodOptional<z.ZodBoolean>;
336
+ includeAerial: z.ZodOptional<z.ZodBoolean>;
337
+ }, z.core.$strip>>>;
338
+ }, z.core.$strip>;
339
+ export type PluginAIInspirationPreset = z.infer<typeof PluginAIInspirationPreset>;
340
+ export declare const PluginAIInspirationPresetCategory: z.ZodObject<{
341
+ id: z.ZodString;
342
+ label: z.ZodString;
343
+ description: z.ZodOptional<z.ZodString>;
344
+ }, z.core.$strip>;
345
+ export type PluginAIInspirationPresetCategory = z.infer<typeof PluginAIInspirationPresetCategory>;
346
+ export declare const PluginAIInspirationGetPresetCatalogResult: z.ZodObject<{
347
+ categories: z.ZodArray<z.ZodObject<{
348
+ id: z.ZodString;
349
+ label: z.ZodString;
350
+ description: z.ZodOptional<z.ZodString>;
351
+ }, z.core.$strip>>;
352
+ presets: z.ZodArray<z.ZodObject<{
353
+ id: z.ZodString;
354
+ name: z.ZodString;
355
+ source: z.ZodEnum<{
356
+ curated: "curated";
357
+ user: "user";
358
+ }>;
359
+ modelId: z.ZodString;
360
+ categoryId: z.ZodOptional<z.ZodString>;
361
+ categoryLabel: z.ZodOptional<z.ZodString>;
362
+ description: z.ZodOptional<z.ZodString>;
363
+ previewImageUrl: z.ZodOptional<z.ZodString>;
364
+ prompt: z.ZodOptional<z.ZodString>;
365
+ stylePrompt: z.ZodOptional<z.ZodString>;
366
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
367
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
368
+ url: z.ZodString;
369
+ label: z.ZodOptional<z.ZodString>;
370
+ weight: z.ZodOptional<z.ZodNumber>;
371
+ }, z.core.$strip>>>;
372
+ siteDefaults: z.ZodOptional<z.ZodOptional<z.ZodObject<{
373
+ includeSatellite: z.ZodOptional<z.ZodBoolean>;
374
+ includeStreetView: z.ZodOptional<z.ZodBoolean>;
375
+ includeAerial: z.ZodOptional<z.ZodBoolean>;
376
+ }, z.core.$strip>>>;
377
+ }, z.core.$strip>>;
378
+ }, z.core.$strip>;
379
+ export type PluginAIInspirationGetPresetCatalogResult = z.infer<typeof PluginAIInspirationGetPresetCatalogResult>;
380
+ export declare const PluginAIInspirationOutput: z.ZodObject<{
381
+ outputType: z.ZodEnum<{
382
+ image: "image";
383
+ video: "video";
384
+ }>;
385
+ shapeId: z.ZodString;
386
+ assetId: z.ZodString;
387
+ outputUrl: z.ZodOptional<z.ZodString>;
388
+ position: z.ZodOptional<z.ZodObject<{
389
+ x: z.ZodNumber;
390
+ y: z.ZodNumber;
391
+ }, z.core.$strip>>;
392
+ }, z.core.$strip>;
393
+ export type PluginAIInspirationOutput = z.infer<typeof PluginAIInspirationOutput>;
394
+ export declare const PluginAIInspirationDebugSummary: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
395
+ export type PluginAIInspirationDebugSummary = z.infer<typeof PluginAIInspirationDebugSummary>;
396
+ export declare const PluginAIInspirationRunMetadata: z.ZodObject<{
397
+ geometryFidelity: z.ZodOptional<z.ZodString>;
398
+ debugSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
399
+ streetViewComposite: z.ZodOptional<z.ZodObject<{
400
+ used: z.ZodBoolean;
401
+ renderMode: z.ZodEnum<{
402
+ prompt_refs_default: "prompt_refs_default";
403
+ masked_composite_pilot: "masked_composite_pilot";
404
+ }>;
405
+ backgroundLabel: z.ZodOptional<z.ZodString>;
406
+ }, z.core.$strip>>;
407
+ }, z.core.$strip>;
408
+ export type PluginAIInspirationRunMetadata = z.infer<typeof PluginAIInspirationRunMetadata>;
409
+ export declare const PluginAIInspirationGenerateArgs: z.ZodObject<{
410
+ sourceShapeId: z.ZodString;
411
+ prompt: z.ZodString;
412
+ modelId: z.ZodOptional<z.ZodString>;
413
+ referenceShapeIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
414
+ referenceStrength: z.ZodOptional<z.ZodEnum<{
415
+ low: "low";
416
+ medium: "medium";
417
+ high: "high";
418
+ }>>;
419
+ appliedPreset: z.ZodOptional<z.ZodObject<{
420
+ source: z.ZodEnum<{
421
+ curated: "curated";
422
+ user: "user";
423
+ }>;
424
+ presetId: z.ZodString;
425
+ name: z.ZodString;
426
+ savedPresetKind: z.ZodOptional<z.ZodEnum<{
427
+ prompt: "prompt";
428
+ style: "style";
429
+ }>>;
430
+ stylePrompt: z.ZodOptional<z.ZodString>;
431
+ modelId: z.ZodOptional<z.ZodString>;
432
+ referenceImages: z.ZodOptional<z.ZodArray<z.ZodObject<{
433
+ url: z.ZodString;
434
+ label: z.ZodOptional<z.ZodString>;
435
+ weight: z.ZodOptional<z.ZodNumber>;
436
+ }, z.core.$strip>>>;
437
+ siteDefaults: z.ZodOptional<z.ZodObject<{
438
+ includeSatellite: z.ZodOptional<z.ZodBoolean>;
439
+ includeStreetView: z.ZodOptional<z.ZodBoolean>;
440
+ includeAerial: z.ZodOptional<z.ZodBoolean>;
441
+ }, z.core.$strip>>;
442
+ }, z.core.$strip>>;
443
+ site: z.ZodOptional<z.ZodObject<{
444
+ includeSatellite: z.ZodOptional<z.ZodBoolean>;
445
+ includeStreetView: z.ZodOptional<z.ZodBoolean>;
446
+ includeAerial: z.ZodOptional<z.ZodBoolean>;
447
+ aerialBearing: z.ZodOptional<z.ZodNumber>;
448
+ aerialPitch: z.ZodOptional<z.ZodNumber>;
449
+ selectedDiagramIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
450
+ location: z.ZodOptional<z.ZodObject<{
451
+ lat: z.ZodNumber;
452
+ lng: z.ZodNumber;
453
+ }, z.core.$strip>>;
454
+ }, z.core.$strip>>;
455
+ regionHint: z.ZodOptional<z.ZodObject<{
456
+ x: z.ZodNumber;
457
+ y: z.ZodNumber;
458
+ w: z.ZodNumber;
459
+ h: z.ZodNumber;
460
+ }, z.core.$strip>>;
461
+ sketchGuidance: z.ZodOptional<z.ZodObject<{
462
+ visualShapeIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
463
+ textAnnotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
464
+ text: z.ZodString;
465
+ x: z.ZodOptional<z.ZodNumber>;
466
+ y: z.ZodOptional<z.ZodNumber>;
467
+ }, z.core.$strip>>>;
468
+ }, z.core.$strip>>;
469
+ video: z.ZodOptional<z.ZodObject<{
470
+ mode: z.ZodOptional<z.ZodEnum<{
471
+ animate: "animate";
472
+ references: "references";
473
+ keyframes: "keyframes";
474
+ }>>;
475
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
476
+ motion: z.ZodOptional<z.ZodEnum<{
477
+ auto: "auto";
478
+ "slow-dolly": "slow-dolly";
479
+ "subtle-orbit": "subtle-orbit";
480
+ reveal: "reveal";
481
+ }>>;
482
+ duration: z.ZodOptional<z.ZodEnum<{
483
+ "4s": "4s";
484
+ "6s": "6s";
485
+ "8s": "8s";
486
+ }>>;
487
+ }, z.core.$strip>>;
488
+ runMode: z.ZodOptional<z.ZodEnum<{
489
+ blocking: "blocking";
490
+ job: "job";
491
+ }>>;
492
+ }, z.core.$strip>;
493
+ export type PluginAIInspirationGenerateArgs = z.infer<typeof PluginAIInspirationGenerateArgs>;
494
+ export declare const PluginAIInspirationRunResult: z.ZodObject<{
495
+ jobId: z.ZodOptional<z.ZodString>;
496
+ output: z.ZodOptional<z.ZodObject<{
497
+ outputType: z.ZodEnum<{
498
+ image: "image";
499
+ video: "video";
500
+ }>;
501
+ shapeId: z.ZodString;
502
+ assetId: z.ZodString;
503
+ outputUrl: z.ZodOptional<z.ZodString>;
504
+ position: z.ZodOptional<z.ZodObject<{
505
+ x: z.ZodNumber;
506
+ y: z.ZodNumber;
507
+ }, z.core.$strip>>;
508
+ }, z.core.$strip>>;
509
+ outputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
510
+ outputType: z.ZodEnum<{
511
+ image: "image";
512
+ video: "video";
513
+ }>;
514
+ shapeId: z.ZodString;
515
+ assetId: z.ZodString;
516
+ outputUrl: z.ZodOptional<z.ZodString>;
517
+ position: z.ZodOptional<z.ZodObject<{
518
+ x: z.ZodNumber;
519
+ y: z.ZodNumber;
520
+ }, z.core.$strip>>;
521
+ }, z.core.$strip>>>;
522
+ metadata: z.ZodOptional<z.ZodObject<{
523
+ geometryFidelity: z.ZodOptional<z.ZodString>;
524
+ debugSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
525
+ streetViewComposite: z.ZodOptional<z.ZodObject<{
526
+ used: z.ZodBoolean;
527
+ renderMode: z.ZodEnum<{
528
+ prompt_refs_default: "prompt_refs_default";
529
+ masked_composite_pilot: "masked_composite_pilot";
530
+ }>;
531
+ backgroundLabel: z.ZodOptional<z.ZodString>;
532
+ }, z.core.$strip>>;
533
+ }, z.core.$strip>>;
534
+ }, z.core.$strip>;
535
+ export type PluginAIInspirationRunResult = z.infer<typeof PluginAIInspirationRunResult>;
536
+ export declare const PluginAIInspirationRefineArgs: z.ZodObject<{
537
+ sourceShapeId: z.ZodString;
538
+ upscaleFactor: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1.5>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
539
+ runMode: z.ZodOptional<z.ZodEnum<{
540
+ blocking: "blocking";
541
+ job: "job";
542
+ }>>;
543
+ }, z.core.$strip>;
544
+ export type PluginAIInspirationRefineArgs = z.infer<typeof PluginAIInspirationRefineArgs>;
545
+ export declare const PluginAIInspirationJobProgress: z.ZodObject<{
546
+ currentStep: z.ZodOptional<z.ZodNumber>;
547
+ totalSteps: z.ZodOptional<z.ZodNumber>;
548
+ message: z.ZodOptional<z.ZodString>;
549
+ }, z.core.$strip>;
550
+ export type PluginAIInspirationJobProgress = z.infer<typeof PluginAIInspirationJobProgress>;
551
+ export declare const PluginAIInspirationJob: z.ZodObject<{
552
+ jobId: z.ZodString;
553
+ status: z.ZodEnum<{
554
+ queued: "queued";
555
+ running: "running";
556
+ completed: "completed";
557
+ failed: "failed";
558
+ cancelled: "cancelled";
559
+ }>;
560
+ createdAt: z.ZodNumber;
561
+ updatedAt: z.ZodNumber;
562
+ completedAt: z.ZodOptional<z.ZodNumber>;
563
+ method: z.ZodString;
564
+ progress: z.ZodOptional<z.ZodObject<{
565
+ currentStep: z.ZodOptional<z.ZodNumber>;
566
+ totalSteps: z.ZodOptional<z.ZodNumber>;
567
+ message: z.ZodOptional<z.ZodString>;
568
+ }, z.core.$strip>>;
569
+ result: z.ZodOptional<z.ZodObject<{
570
+ jobId: z.ZodOptional<z.ZodString>;
571
+ output: z.ZodOptional<z.ZodObject<{
572
+ outputType: z.ZodEnum<{
573
+ image: "image";
574
+ video: "video";
575
+ }>;
576
+ shapeId: z.ZodString;
577
+ assetId: z.ZodString;
578
+ outputUrl: z.ZodOptional<z.ZodString>;
579
+ position: z.ZodOptional<z.ZodObject<{
580
+ x: z.ZodNumber;
581
+ y: z.ZodNumber;
582
+ }, z.core.$strip>>;
583
+ }, z.core.$strip>>;
584
+ outputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
585
+ outputType: z.ZodEnum<{
586
+ image: "image";
587
+ video: "video";
588
+ }>;
589
+ shapeId: z.ZodString;
590
+ assetId: z.ZodString;
591
+ outputUrl: z.ZodOptional<z.ZodString>;
592
+ position: z.ZodOptional<z.ZodObject<{
593
+ x: z.ZodNumber;
594
+ y: z.ZodNumber;
595
+ }, z.core.$strip>>;
596
+ }, z.core.$strip>>>;
597
+ metadata: z.ZodOptional<z.ZodObject<{
598
+ geometryFidelity: z.ZodOptional<z.ZodString>;
599
+ debugSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
600
+ streetViewComposite: z.ZodOptional<z.ZodObject<{
601
+ used: z.ZodBoolean;
602
+ renderMode: z.ZodEnum<{
603
+ prompt_refs_default: "prompt_refs_default";
604
+ masked_composite_pilot: "masked_composite_pilot";
605
+ }>;
606
+ backgroundLabel: z.ZodOptional<z.ZodString>;
607
+ }, z.core.$strip>>;
608
+ }, z.core.$strip>>;
609
+ }, z.core.$strip>>;
610
+ error: z.ZodOptional<z.ZodString>;
611
+ }, z.core.$strip>;
612
+ export type PluginAIInspirationJob = z.infer<typeof PluginAIInspirationJob>;
613
+ export declare const PluginAIInspirationJobArgs: z.ZodObject<{
614
+ jobId: z.ZodString;
615
+ }, z.core.$strip>;
616
+ export type PluginAIInspirationJobArgs = z.infer<typeof PluginAIInspirationJobArgs>;
617
+ export declare const PluginAIInspirationGetJobResult: z.ZodObject<{
618
+ job: z.ZodObject<{
619
+ jobId: z.ZodString;
620
+ status: z.ZodEnum<{
621
+ queued: "queued";
622
+ running: "running";
623
+ completed: "completed";
624
+ failed: "failed";
625
+ cancelled: "cancelled";
626
+ }>;
627
+ createdAt: z.ZodNumber;
628
+ updatedAt: z.ZodNumber;
629
+ completedAt: z.ZodOptional<z.ZodNumber>;
630
+ method: z.ZodString;
631
+ progress: z.ZodOptional<z.ZodObject<{
632
+ currentStep: z.ZodOptional<z.ZodNumber>;
633
+ totalSteps: z.ZodOptional<z.ZodNumber>;
634
+ message: z.ZodOptional<z.ZodString>;
635
+ }, z.core.$strip>>;
636
+ result: z.ZodOptional<z.ZodObject<{
637
+ jobId: z.ZodOptional<z.ZodString>;
638
+ output: z.ZodOptional<z.ZodObject<{
639
+ outputType: z.ZodEnum<{
640
+ image: "image";
641
+ video: "video";
642
+ }>;
643
+ shapeId: z.ZodString;
644
+ assetId: z.ZodString;
645
+ outputUrl: z.ZodOptional<z.ZodString>;
646
+ position: z.ZodOptional<z.ZodObject<{
647
+ x: z.ZodNumber;
648
+ y: z.ZodNumber;
649
+ }, z.core.$strip>>;
650
+ }, z.core.$strip>>;
651
+ outputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
652
+ outputType: z.ZodEnum<{
653
+ image: "image";
654
+ video: "video";
655
+ }>;
656
+ shapeId: z.ZodString;
657
+ assetId: z.ZodString;
658
+ outputUrl: z.ZodOptional<z.ZodString>;
659
+ position: z.ZodOptional<z.ZodObject<{
660
+ x: z.ZodNumber;
661
+ y: z.ZodNumber;
662
+ }, z.core.$strip>>;
663
+ }, z.core.$strip>>>;
664
+ metadata: z.ZodOptional<z.ZodObject<{
665
+ geometryFidelity: z.ZodOptional<z.ZodString>;
666
+ debugSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
667
+ streetViewComposite: z.ZodOptional<z.ZodObject<{
668
+ used: z.ZodBoolean;
669
+ renderMode: z.ZodEnum<{
670
+ prompt_refs_default: "prompt_refs_default";
671
+ masked_composite_pilot: "masked_composite_pilot";
672
+ }>;
673
+ backgroundLabel: z.ZodOptional<z.ZodString>;
674
+ }, z.core.$strip>>;
675
+ }, z.core.$strip>>;
676
+ }, z.core.$strip>>;
677
+ error: z.ZodOptional<z.ZodString>;
678
+ }, z.core.$strip>;
679
+ }, z.core.$strip>;
680
+ export type PluginAIInspirationGetJobResult = z.infer<typeof PluginAIInspirationGetJobResult>;
681
+ export declare const PluginAIInspirationCancelJobResult: z.ZodObject<{
682
+ job: z.ZodObject<{
683
+ jobId: z.ZodString;
684
+ status: z.ZodEnum<{
685
+ queued: "queued";
686
+ running: "running";
687
+ completed: "completed";
688
+ failed: "failed";
689
+ cancelled: "cancelled";
690
+ }>;
691
+ createdAt: z.ZodNumber;
692
+ updatedAt: z.ZodNumber;
693
+ completedAt: z.ZodOptional<z.ZodNumber>;
694
+ method: z.ZodString;
695
+ progress: z.ZodOptional<z.ZodObject<{
696
+ currentStep: z.ZodOptional<z.ZodNumber>;
697
+ totalSteps: z.ZodOptional<z.ZodNumber>;
698
+ message: z.ZodOptional<z.ZodString>;
699
+ }, z.core.$strip>>;
700
+ result: z.ZodOptional<z.ZodObject<{
701
+ jobId: z.ZodOptional<z.ZodString>;
702
+ output: z.ZodOptional<z.ZodObject<{
703
+ outputType: z.ZodEnum<{
704
+ image: "image";
705
+ video: "video";
706
+ }>;
707
+ shapeId: z.ZodString;
708
+ assetId: z.ZodString;
709
+ outputUrl: z.ZodOptional<z.ZodString>;
710
+ position: z.ZodOptional<z.ZodObject<{
711
+ x: z.ZodNumber;
712
+ y: z.ZodNumber;
713
+ }, z.core.$strip>>;
714
+ }, z.core.$strip>>;
715
+ outputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
716
+ outputType: z.ZodEnum<{
717
+ image: "image";
718
+ video: "video";
719
+ }>;
720
+ shapeId: z.ZodString;
721
+ assetId: z.ZodString;
722
+ outputUrl: z.ZodOptional<z.ZodString>;
723
+ position: z.ZodOptional<z.ZodObject<{
724
+ x: z.ZodNumber;
725
+ y: z.ZodNumber;
726
+ }, z.core.$strip>>;
727
+ }, z.core.$strip>>>;
728
+ metadata: z.ZodOptional<z.ZodObject<{
729
+ geometryFidelity: z.ZodOptional<z.ZodString>;
730
+ debugSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
731
+ streetViewComposite: z.ZodOptional<z.ZodObject<{
732
+ used: z.ZodBoolean;
733
+ renderMode: z.ZodEnum<{
734
+ prompt_refs_default: "prompt_refs_default";
735
+ masked_composite_pilot: "masked_composite_pilot";
736
+ }>;
737
+ backgroundLabel: z.ZodOptional<z.ZodString>;
738
+ }, z.core.$strip>>;
739
+ }, z.core.$strip>>;
740
+ }, z.core.$strip>>;
741
+ error: z.ZodOptional<z.ZodString>;
742
+ }, z.core.$strip>;
743
+ }, z.core.$strip>;
744
+ export type PluginAIInspirationCancelJobResult = z.infer<typeof PluginAIInspirationCancelJobResult>;
745
+ export declare const PluginAIInspirationListJobsResult: z.ZodObject<{
746
+ jobs: z.ZodArray<z.ZodObject<{
747
+ jobId: z.ZodString;
748
+ status: z.ZodEnum<{
749
+ queued: "queued";
750
+ running: "running";
751
+ completed: "completed";
752
+ failed: "failed";
753
+ cancelled: "cancelled";
754
+ }>;
755
+ createdAt: z.ZodNumber;
756
+ updatedAt: z.ZodNumber;
757
+ completedAt: z.ZodOptional<z.ZodNumber>;
758
+ method: z.ZodString;
759
+ progress: z.ZodOptional<z.ZodObject<{
760
+ currentStep: z.ZodOptional<z.ZodNumber>;
761
+ totalSteps: z.ZodOptional<z.ZodNumber>;
762
+ message: z.ZodOptional<z.ZodString>;
763
+ }, z.core.$strip>>;
764
+ result: z.ZodOptional<z.ZodObject<{
765
+ jobId: z.ZodOptional<z.ZodString>;
766
+ output: z.ZodOptional<z.ZodObject<{
767
+ outputType: z.ZodEnum<{
768
+ image: "image";
769
+ video: "video";
770
+ }>;
771
+ shapeId: z.ZodString;
772
+ assetId: z.ZodString;
773
+ outputUrl: z.ZodOptional<z.ZodString>;
774
+ position: z.ZodOptional<z.ZodObject<{
775
+ x: z.ZodNumber;
776
+ y: z.ZodNumber;
777
+ }, z.core.$strip>>;
778
+ }, z.core.$strip>>;
779
+ outputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
780
+ outputType: z.ZodEnum<{
781
+ image: "image";
782
+ video: "video";
783
+ }>;
784
+ shapeId: z.ZodString;
785
+ assetId: z.ZodString;
786
+ outputUrl: z.ZodOptional<z.ZodString>;
787
+ position: z.ZodOptional<z.ZodObject<{
788
+ x: z.ZodNumber;
789
+ y: z.ZodNumber;
790
+ }, z.core.$strip>>;
791
+ }, z.core.$strip>>>;
792
+ metadata: z.ZodOptional<z.ZodObject<{
793
+ geometryFidelity: z.ZodOptional<z.ZodString>;
794
+ debugSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
795
+ streetViewComposite: z.ZodOptional<z.ZodObject<{
796
+ used: z.ZodBoolean;
797
+ renderMode: z.ZodEnum<{
798
+ prompt_refs_default: "prompt_refs_default";
799
+ masked_composite_pilot: "masked_composite_pilot";
800
+ }>;
801
+ backgroundLabel: z.ZodOptional<z.ZodString>;
802
+ }, z.core.$strip>>;
803
+ }, z.core.$strip>>;
804
+ }, z.core.$strip>>;
805
+ error: z.ZodOptional<z.ZodString>;
806
+ }, z.core.$strip>>;
807
+ }, z.core.$strip>;
808
+ export type PluginAIInspirationListJobsResult = z.infer<typeof PluginAIInspirationListJobsResult>;
809
+ export declare const PluginAIInspirationWorkflowVideoConfig: z.ZodObject<{
810
+ mode: z.ZodOptional<z.ZodString>;
811
+ motion: z.ZodOptional<z.ZodString>;
812
+ duration: z.ZodOptional<z.ZodString>;
813
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
814
+ }, z.core.$strip>;
815
+ export type PluginAIInspirationWorkflowVideoConfig = z.infer<typeof PluginAIInspirationWorkflowVideoConfig>;
816
+ export declare const PluginAIInspirationGenerationInputSnapshot: z.ZodObject<{
817
+ version: z.ZodLiteral<1>;
818
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
819
+ regionHint: z.ZodOptional<z.ZodObject<{
820
+ x: z.ZodNumber;
821
+ y: z.ZodNumber;
822
+ w: z.ZodNumber;
823
+ h: z.ZodNumber;
824
+ }, z.core.$strip>>;
825
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
826
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
827
+ }, z.core.$strip>;
828
+ export type PluginAIInspirationGenerationInputSnapshot = z.infer<typeof PluginAIInspirationGenerationInputSnapshot>;
829
+ export declare const PluginAIInspirationWorkflowOperation: z.ZodObject<{
830
+ type: z.ZodEnum<{
831
+ "generate-image": "generate-image";
832
+ refine: "refine";
833
+ "generate-video": "generate-video";
834
+ }>;
835
+ label: z.ZodString;
836
+ prompt: z.ZodOptional<z.ZodString>;
837
+ modelId: z.ZodOptional<z.ZodString>;
838
+ presetId: z.ZodOptional<z.ZodString>;
839
+ presetName: z.ZodOptional<z.ZodString>;
840
+ refineFactor: z.ZodOptional<z.ZodNumber>;
841
+ sourceRole: z.ZodOptional<z.ZodEnum<{
842
+ primary: "primary";
843
+ "end-frame": "end-frame";
844
+ }>>;
845
+ video: z.ZodOptional<z.ZodObject<{
846
+ mode: z.ZodOptional<z.ZodString>;
847
+ motion: z.ZodOptional<z.ZodString>;
848
+ duration: z.ZodOptional<z.ZodString>;
849
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
850
+ }, z.core.$strip>>;
851
+ generationInput: z.ZodOptional<z.ZodObject<{
852
+ version: z.ZodLiteral<1>;
853
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
854
+ regionHint: z.ZodOptional<z.ZodObject<{
855
+ x: z.ZodNumber;
856
+ y: z.ZodNumber;
857
+ w: z.ZodNumber;
858
+ h: z.ZodNumber;
859
+ }, z.core.$strip>>;
860
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
861
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
862
+ }, z.core.$strip>>;
863
+ }, z.core.$strip>;
864
+ export type PluginAIInspirationWorkflowOperation = z.infer<typeof PluginAIInspirationWorkflowOperation>;
865
+ export declare const PluginAIInspirationWorkflowNode: z.ZodObject<{
866
+ id: z.ZodString;
867
+ shapeId: z.ZodString;
868
+ assetId: z.ZodOptional<z.ZodString>;
869
+ kind: z.ZodEnum<{
870
+ source: "source";
871
+ image: "image";
872
+ video: "video";
873
+ }>;
874
+ state: z.ZodString;
875
+ runState: z.ZodOptional<z.ZodEnum<{
876
+ running: "running";
877
+ failed: "failed";
878
+ current: "current";
879
+ stale: "stale";
880
+ superseded: "superseded";
881
+ }>>;
882
+ staleReason: z.ZodOptional<z.ZodString>;
883
+ incomingEdgeIds: z.ZodArray<z.ZodString>;
884
+ outgoingEdgeIds: z.ZodArray<z.ZodString>;
885
+ createdAt: z.ZodNumber;
886
+ updatedAt: z.ZodNumber;
887
+ }, z.core.$strip>;
888
+ export type PluginAIInspirationWorkflowNode = z.infer<typeof PluginAIInspirationWorkflowNode>;
889
+ export declare const PluginAIInspirationWorkflowEdge: z.ZodObject<{
890
+ id: z.ZodString;
891
+ sourceNodeId: z.ZodString;
892
+ targetNodeId: z.ZodString;
893
+ arrowShapeId: z.ZodOptional<z.ZodString>;
894
+ operation: z.ZodObject<{
895
+ type: z.ZodEnum<{
896
+ "generate-image": "generate-image";
897
+ refine: "refine";
898
+ "generate-video": "generate-video";
899
+ }>;
900
+ label: z.ZodString;
901
+ prompt: z.ZodOptional<z.ZodString>;
902
+ modelId: z.ZodOptional<z.ZodString>;
903
+ presetId: z.ZodOptional<z.ZodString>;
904
+ presetName: z.ZodOptional<z.ZodString>;
905
+ refineFactor: z.ZodOptional<z.ZodNumber>;
906
+ sourceRole: z.ZodOptional<z.ZodEnum<{
907
+ primary: "primary";
908
+ "end-frame": "end-frame";
909
+ }>>;
910
+ video: z.ZodOptional<z.ZodObject<{
911
+ mode: z.ZodOptional<z.ZodString>;
912
+ motion: z.ZodOptional<z.ZodString>;
913
+ duration: z.ZodOptional<z.ZodString>;
914
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
915
+ }, z.core.$strip>>;
916
+ generationInput: z.ZodOptional<z.ZodObject<{
917
+ version: z.ZodLiteral<1>;
918
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
919
+ regionHint: z.ZodOptional<z.ZodObject<{
920
+ x: z.ZodNumber;
921
+ y: z.ZodNumber;
922
+ w: z.ZodNumber;
923
+ h: z.ZodNumber;
924
+ }, z.core.$strip>>;
925
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
926
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
927
+ }, z.core.$strip>>;
928
+ }, z.core.$strip>;
929
+ state: z.ZodString;
930
+ runState: z.ZodOptional<z.ZodEnum<{
931
+ running: "running";
932
+ failed: "failed";
933
+ current: "current";
934
+ stale: "stale";
935
+ superseded: "superseded";
936
+ }>>;
937
+ staleReason: z.ZodOptional<z.ZodString>;
938
+ supersededByEdgeId: z.ZodOptional<z.ZodString>;
939
+ createdAt: z.ZodNumber;
940
+ updatedAt: z.ZodNumber;
941
+ }, z.core.$strip>;
942
+ export type PluginAIInspirationWorkflowEdge = z.infer<typeof PluginAIInspirationWorkflowEdge>;
943
+ export declare const PluginAIInspirationWorkflow: z.ZodObject<{
944
+ id: z.ZodString;
945
+ rootNodeIds: z.ZodArray<z.ZodString>;
946
+ nodeIds: z.ZodArray<z.ZodString>;
947
+ edgeIds: z.ZodArray<z.ZodString>;
948
+ nodes: z.ZodRecord<z.ZodString, z.ZodObject<{
949
+ id: z.ZodString;
950
+ shapeId: z.ZodString;
951
+ assetId: z.ZodOptional<z.ZodString>;
952
+ kind: z.ZodEnum<{
953
+ source: "source";
954
+ image: "image";
955
+ video: "video";
956
+ }>;
957
+ state: z.ZodString;
958
+ runState: z.ZodOptional<z.ZodEnum<{
959
+ running: "running";
960
+ failed: "failed";
961
+ current: "current";
962
+ stale: "stale";
963
+ superseded: "superseded";
964
+ }>>;
965
+ staleReason: z.ZodOptional<z.ZodString>;
966
+ incomingEdgeIds: z.ZodArray<z.ZodString>;
967
+ outgoingEdgeIds: z.ZodArray<z.ZodString>;
968
+ createdAt: z.ZodNumber;
969
+ updatedAt: z.ZodNumber;
970
+ }, z.core.$strip>>;
971
+ edges: z.ZodRecord<z.ZodString, z.ZodObject<{
972
+ id: z.ZodString;
973
+ sourceNodeId: z.ZodString;
974
+ targetNodeId: z.ZodString;
975
+ arrowShapeId: z.ZodOptional<z.ZodString>;
976
+ operation: z.ZodObject<{
977
+ type: z.ZodEnum<{
978
+ "generate-image": "generate-image";
979
+ refine: "refine";
980
+ "generate-video": "generate-video";
981
+ }>;
982
+ label: z.ZodString;
983
+ prompt: z.ZodOptional<z.ZodString>;
984
+ modelId: z.ZodOptional<z.ZodString>;
985
+ presetId: z.ZodOptional<z.ZodString>;
986
+ presetName: z.ZodOptional<z.ZodString>;
987
+ refineFactor: z.ZodOptional<z.ZodNumber>;
988
+ sourceRole: z.ZodOptional<z.ZodEnum<{
989
+ primary: "primary";
990
+ "end-frame": "end-frame";
991
+ }>>;
992
+ video: z.ZodOptional<z.ZodObject<{
993
+ mode: z.ZodOptional<z.ZodString>;
994
+ motion: z.ZodOptional<z.ZodString>;
995
+ duration: z.ZodOptional<z.ZodString>;
996
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
997
+ }, z.core.$strip>>;
998
+ generationInput: z.ZodOptional<z.ZodObject<{
999
+ version: z.ZodLiteral<1>;
1000
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1001
+ regionHint: z.ZodOptional<z.ZodObject<{
1002
+ x: z.ZodNumber;
1003
+ y: z.ZodNumber;
1004
+ w: z.ZodNumber;
1005
+ h: z.ZodNumber;
1006
+ }, z.core.$strip>>;
1007
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1008
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1009
+ }, z.core.$strip>>;
1010
+ }, z.core.$strip>;
1011
+ state: z.ZodString;
1012
+ runState: z.ZodOptional<z.ZodEnum<{
1013
+ running: "running";
1014
+ failed: "failed";
1015
+ current: "current";
1016
+ stale: "stale";
1017
+ superseded: "superseded";
1018
+ }>>;
1019
+ staleReason: z.ZodOptional<z.ZodString>;
1020
+ supersededByEdgeId: z.ZodOptional<z.ZodString>;
1021
+ createdAt: z.ZodNumber;
1022
+ updatedAt: z.ZodNumber;
1023
+ }, z.core.$strip>>;
1024
+ createdAt: z.ZodNumber;
1025
+ updatedAt: z.ZodNumber;
1026
+ }, z.core.$strip>;
1027
+ export type PluginAIInspirationWorkflow = z.infer<typeof PluginAIInspirationWorkflow>;
1028
+ export declare const PluginAIInspirationGetWorkflowForShapeArgs: z.ZodObject<{
1029
+ shapeId: z.ZodString;
1030
+ }, z.core.$strip>;
1031
+ export type PluginAIInspirationGetWorkflowForShapeArgs = z.infer<typeof PluginAIInspirationGetWorkflowForShapeArgs>;
1032
+ export declare const PluginAIInspirationGetWorkflowForShapeResult: z.ZodObject<{
1033
+ workflow: z.ZodNullable<z.ZodObject<{
1034
+ id: z.ZodString;
1035
+ rootNodeIds: z.ZodArray<z.ZodString>;
1036
+ nodeIds: z.ZodArray<z.ZodString>;
1037
+ edgeIds: z.ZodArray<z.ZodString>;
1038
+ nodes: z.ZodRecord<z.ZodString, z.ZodObject<{
1039
+ id: z.ZodString;
1040
+ shapeId: z.ZodString;
1041
+ assetId: z.ZodOptional<z.ZodString>;
1042
+ kind: z.ZodEnum<{
1043
+ source: "source";
1044
+ image: "image";
1045
+ video: "video";
1046
+ }>;
1047
+ state: z.ZodString;
1048
+ runState: z.ZodOptional<z.ZodEnum<{
1049
+ running: "running";
1050
+ failed: "failed";
1051
+ current: "current";
1052
+ stale: "stale";
1053
+ superseded: "superseded";
1054
+ }>>;
1055
+ staleReason: z.ZodOptional<z.ZodString>;
1056
+ incomingEdgeIds: z.ZodArray<z.ZodString>;
1057
+ outgoingEdgeIds: z.ZodArray<z.ZodString>;
1058
+ createdAt: z.ZodNumber;
1059
+ updatedAt: z.ZodNumber;
1060
+ }, z.core.$strip>>;
1061
+ edges: z.ZodRecord<z.ZodString, z.ZodObject<{
1062
+ id: z.ZodString;
1063
+ sourceNodeId: z.ZodString;
1064
+ targetNodeId: z.ZodString;
1065
+ arrowShapeId: z.ZodOptional<z.ZodString>;
1066
+ operation: z.ZodObject<{
1067
+ type: z.ZodEnum<{
1068
+ "generate-image": "generate-image";
1069
+ refine: "refine";
1070
+ "generate-video": "generate-video";
1071
+ }>;
1072
+ label: z.ZodString;
1073
+ prompt: z.ZodOptional<z.ZodString>;
1074
+ modelId: z.ZodOptional<z.ZodString>;
1075
+ presetId: z.ZodOptional<z.ZodString>;
1076
+ presetName: z.ZodOptional<z.ZodString>;
1077
+ refineFactor: z.ZodOptional<z.ZodNumber>;
1078
+ sourceRole: z.ZodOptional<z.ZodEnum<{
1079
+ primary: "primary";
1080
+ "end-frame": "end-frame";
1081
+ }>>;
1082
+ video: z.ZodOptional<z.ZodObject<{
1083
+ mode: z.ZodOptional<z.ZodString>;
1084
+ motion: z.ZodOptional<z.ZodString>;
1085
+ duration: z.ZodOptional<z.ZodString>;
1086
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1087
+ }, z.core.$strip>>;
1088
+ generationInput: z.ZodOptional<z.ZodObject<{
1089
+ version: z.ZodLiteral<1>;
1090
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1091
+ regionHint: z.ZodOptional<z.ZodObject<{
1092
+ x: z.ZodNumber;
1093
+ y: z.ZodNumber;
1094
+ w: z.ZodNumber;
1095
+ h: z.ZodNumber;
1096
+ }, z.core.$strip>>;
1097
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1098
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1099
+ }, z.core.$strip>>;
1100
+ }, z.core.$strip>;
1101
+ state: z.ZodString;
1102
+ runState: z.ZodOptional<z.ZodEnum<{
1103
+ running: "running";
1104
+ failed: "failed";
1105
+ current: "current";
1106
+ stale: "stale";
1107
+ superseded: "superseded";
1108
+ }>>;
1109
+ staleReason: z.ZodOptional<z.ZodString>;
1110
+ supersededByEdgeId: z.ZodOptional<z.ZodString>;
1111
+ createdAt: z.ZodNumber;
1112
+ updatedAt: z.ZodNumber;
1113
+ }, z.core.$strip>>;
1114
+ createdAt: z.ZodNumber;
1115
+ updatedAt: z.ZodNumber;
1116
+ }, z.core.$strip>>;
1117
+ node: z.ZodNullable<z.ZodObject<{
1118
+ id: z.ZodString;
1119
+ shapeId: z.ZodString;
1120
+ assetId: z.ZodOptional<z.ZodString>;
1121
+ kind: z.ZodEnum<{
1122
+ source: "source";
1123
+ image: "image";
1124
+ video: "video";
1125
+ }>;
1126
+ state: z.ZodString;
1127
+ runState: z.ZodOptional<z.ZodEnum<{
1128
+ running: "running";
1129
+ failed: "failed";
1130
+ current: "current";
1131
+ stale: "stale";
1132
+ superseded: "superseded";
1133
+ }>>;
1134
+ staleReason: z.ZodOptional<z.ZodString>;
1135
+ incomingEdgeIds: z.ZodArray<z.ZodString>;
1136
+ outgoingEdgeIds: z.ZodArray<z.ZodString>;
1137
+ createdAt: z.ZodNumber;
1138
+ updatedAt: z.ZodNumber;
1139
+ }, z.core.$strip>>;
1140
+ }, z.core.$strip>;
1141
+ export type PluginAIInspirationGetWorkflowForShapeResult = z.infer<typeof PluginAIInspirationGetWorkflowForShapeResult>;
1142
+ export declare const PluginAIInspirationRerunPlanResult: z.ZodDiscriminatedUnion<[z.ZodObject<{
1143
+ status: z.ZodLiteral<"ready">;
1144
+ workflowId: z.ZodString;
1145
+ sourceNode: z.ZodObject<{
1146
+ id: z.ZodString;
1147
+ shapeId: z.ZodString;
1148
+ assetId: z.ZodOptional<z.ZodString>;
1149
+ kind: z.ZodEnum<{
1150
+ source: "source";
1151
+ image: "image";
1152
+ video: "video";
1153
+ }>;
1154
+ state: z.ZodString;
1155
+ runState: z.ZodOptional<z.ZodEnum<{
1156
+ running: "running";
1157
+ failed: "failed";
1158
+ current: "current";
1159
+ stale: "stale";
1160
+ superseded: "superseded";
1161
+ }>>;
1162
+ staleReason: z.ZodOptional<z.ZodString>;
1163
+ incomingEdgeIds: z.ZodArray<z.ZodString>;
1164
+ outgoingEdgeIds: z.ZodArray<z.ZodString>;
1165
+ createdAt: z.ZodNumber;
1166
+ updatedAt: z.ZodNumber;
1167
+ }, z.core.$strip>;
1168
+ edgeIds: z.ZodArray<z.ZodString>;
1169
+ edges: z.ZodArray<z.ZodObject<{
1170
+ id: z.ZodString;
1171
+ sourceNodeId: z.ZodString;
1172
+ targetNodeId: z.ZodString;
1173
+ arrowShapeId: z.ZodOptional<z.ZodString>;
1174
+ operation: z.ZodObject<{
1175
+ type: z.ZodEnum<{
1176
+ "generate-image": "generate-image";
1177
+ refine: "refine";
1178
+ "generate-video": "generate-video";
1179
+ }>;
1180
+ label: z.ZodString;
1181
+ prompt: z.ZodOptional<z.ZodString>;
1182
+ modelId: z.ZodOptional<z.ZodString>;
1183
+ presetId: z.ZodOptional<z.ZodString>;
1184
+ presetName: z.ZodOptional<z.ZodString>;
1185
+ refineFactor: z.ZodOptional<z.ZodNumber>;
1186
+ sourceRole: z.ZodOptional<z.ZodEnum<{
1187
+ primary: "primary";
1188
+ "end-frame": "end-frame";
1189
+ }>>;
1190
+ video: z.ZodOptional<z.ZodObject<{
1191
+ mode: z.ZodOptional<z.ZodString>;
1192
+ motion: z.ZodOptional<z.ZodString>;
1193
+ duration: z.ZodOptional<z.ZodString>;
1194
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1195
+ }, z.core.$strip>>;
1196
+ generationInput: z.ZodOptional<z.ZodObject<{
1197
+ version: z.ZodLiteral<1>;
1198
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1199
+ regionHint: z.ZodOptional<z.ZodObject<{
1200
+ x: z.ZodNumber;
1201
+ y: z.ZodNumber;
1202
+ w: z.ZodNumber;
1203
+ h: z.ZodNumber;
1204
+ }, z.core.$strip>>;
1205
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1206
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1207
+ }, z.core.$strip>>;
1208
+ }, z.core.$strip>;
1209
+ state: z.ZodString;
1210
+ runState: z.ZodOptional<z.ZodEnum<{
1211
+ running: "running";
1212
+ failed: "failed";
1213
+ current: "current";
1214
+ stale: "stale";
1215
+ superseded: "superseded";
1216
+ }>>;
1217
+ staleReason: z.ZodOptional<z.ZodString>;
1218
+ supersededByEdgeId: z.ZodOptional<z.ZodString>;
1219
+ createdAt: z.ZodNumber;
1220
+ updatedAt: z.ZodNumber;
1221
+ }, z.core.$strip>>;
1222
+ recipe: z.ZodLazy<z.ZodType<{
1223
+ name: string;
1224
+ summary: string;
1225
+ slots: {
1226
+ id: string;
1227
+ type: "end-frame" | "source-image";
1228
+ label: string;
1229
+ required: boolean;
1230
+ }[];
1231
+ steps: {
1232
+ id: string;
1233
+ operation: {
1234
+ type: "generate-image" | "refine" | "generate-video";
1235
+ label: string;
1236
+ prompt?: string | undefined;
1237
+ modelId?: string | undefined;
1238
+ presetId?: string | undefined;
1239
+ presetName?: string | undefined;
1240
+ refineFactor?: number | undefined;
1241
+ sourceRole?: "primary" | "end-frame" | undefined;
1242
+ video?: {
1243
+ mode?: string | undefined;
1244
+ motion?: string | undefined;
1245
+ duration?: string | undefined;
1246
+ endFrameShapeId?: string | undefined;
1247
+ } | undefined;
1248
+ generationInput?: {
1249
+ version: 1;
1250
+ meta: Record<string, JsonValue>;
1251
+ regionHint?: {
1252
+ x: number;
1253
+ y: number;
1254
+ w: number;
1255
+ h: number;
1256
+ } | undefined;
1257
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1258
+ sourceCameraHeading?: number | undefined;
1259
+ } | undefined;
1260
+ };
1261
+ outputKind: "image" | "video";
1262
+ }[];
1263
+ outputKind: "image" | "video";
1264
+ thumbnailUrl?: string | undefined;
1265
+ } & {
1266
+ version: 1;
1267
+ id: string;
1268
+ fingerprint?: string;
1269
+ createdAt: number;
1270
+ updatedAt: number;
1271
+ }, unknown, z.core.$ZodTypeInternals<{
1272
+ name: string;
1273
+ summary: string;
1274
+ slots: {
1275
+ id: string;
1276
+ type: "end-frame" | "source-image";
1277
+ label: string;
1278
+ required: boolean;
1279
+ }[];
1280
+ steps: {
1281
+ id: string;
1282
+ operation: {
1283
+ type: "generate-image" | "refine" | "generate-video";
1284
+ label: string;
1285
+ prompt?: string | undefined;
1286
+ modelId?: string | undefined;
1287
+ presetId?: string | undefined;
1288
+ presetName?: string | undefined;
1289
+ refineFactor?: number | undefined;
1290
+ sourceRole?: "primary" | "end-frame" | undefined;
1291
+ video?: {
1292
+ mode?: string | undefined;
1293
+ motion?: string | undefined;
1294
+ duration?: string | undefined;
1295
+ endFrameShapeId?: string | undefined;
1296
+ } | undefined;
1297
+ generationInput?: {
1298
+ version: 1;
1299
+ meta: Record<string, JsonValue>;
1300
+ regionHint?: {
1301
+ x: number;
1302
+ y: number;
1303
+ w: number;
1304
+ h: number;
1305
+ } | undefined;
1306
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1307
+ sourceCameraHeading?: number | undefined;
1308
+ } | undefined;
1309
+ };
1310
+ outputKind: "image" | "video";
1311
+ }[];
1312
+ outputKind: "image" | "video";
1313
+ thumbnailUrl?: string | undefined;
1314
+ } & {
1315
+ version: 1;
1316
+ id: string;
1317
+ fingerprint?: string;
1318
+ createdAt: number;
1319
+ updatedAt: number;
1320
+ }, unknown>>>;
1321
+ needsEndFrame: z.ZodBoolean;
1322
+ defaultEndFrameShapeId: z.ZodNullable<z.ZodString>;
1323
+ }, z.core.$strip>, z.ZodObject<{
1324
+ status: z.ZodLiteral<"unavailable">;
1325
+ reason: z.ZodEnum<{
1326
+ running: "running";
1327
+ "not-in-workflow": "not-in-workflow";
1328
+ "source-only": "source-only";
1329
+ "missing-input": "missing-input";
1330
+ }>;
1331
+ }, z.core.$strip>], "status">;
1332
+ export type PluginAIInspirationRerunPlanResult = z.infer<typeof PluginAIInspirationRerunPlanResult>;
1333
+ export declare const PluginAIInspirationRerunSelectedBranchArgs: z.ZodObject<{
1334
+ shapeId: z.ZodString;
1335
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1336
+ runMode: z.ZodOptional<z.ZodEnum<{
1337
+ blocking: "blocking";
1338
+ job: "job";
1339
+ }>>;
1340
+ }, z.core.$strip>;
1341
+ export type PluginAIInspirationRerunSelectedBranchArgs = z.infer<typeof PluginAIInspirationRerunSelectedBranchArgs>;
1342
+ export declare const PluginAIInspirationRecipeSlot: z.ZodObject<{
1343
+ id: z.ZodString;
1344
+ type: z.ZodEnum<{
1345
+ "end-frame": "end-frame";
1346
+ "source-image": "source-image";
1347
+ }>;
1348
+ label: z.ZodString;
1349
+ required: z.ZodBoolean;
1350
+ }, z.core.$strip>;
1351
+ export type PluginAIInspirationRecipeSlot = z.infer<typeof PluginAIInspirationRecipeSlot>;
1352
+ export declare const PluginAIInspirationRecipeStep: z.ZodObject<{
1353
+ id: z.ZodString;
1354
+ operation: z.ZodObject<{
1355
+ type: z.ZodEnum<{
1356
+ "generate-image": "generate-image";
1357
+ refine: "refine";
1358
+ "generate-video": "generate-video";
1359
+ }>;
1360
+ label: z.ZodString;
1361
+ prompt: z.ZodOptional<z.ZodString>;
1362
+ modelId: z.ZodOptional<z.ZodString>;
1363
+ presetId: z.ZodOptional<z.ZodString>;
1364
+ presetName: z.ZodOptional<z.ZodString>;
1365
+ refineFactor: z.ZodOptional<z.ZodNumber>;
1366
+ sourceRole: z.ZodOptional<z.ZodEnum<{
1367
+ primary: "primary";
1368
+ "end-frame": "end-frame";
1369
+ }>>;
1370
+ video: z.ZodOptional<z.ZodObject<{
1371
+ mode: z.ZodOptional<z.ZodString>;
1372
+ motion: z.ZodOptional<z.ZodString>;
1373
+ duration: z.ZodOptional<z.ZodString>;
1374
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1375
+ }, z.core.$strip>>;
1376
+ generationInput: z.ZodOptional<z.ZodObject<{
1377
+ version: z.ZodLiteral<1>;
1378
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1379
+ regionHint: z.ZodOptional<z.ZodObject<{
1380
+ x: z.ZodNumber;
1381
+ y: z.ZodNumber;
1382
+ w: z.ZodNumber;
1383
+ h: z.ZodNumber;
1384
+ }, z.core.$strip>>;
1385
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1386
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1387
+ }, z.core.$strip>>;
1388
+ }, z.core.$strip>;
1389
+ outputKind: z.ZodEnum<{
1390
+ image: "image";
1391
+ video: "video";
1392
+ }>;
1393
+ }, z.core.$strip>;
1394
+ export type PluginAIInspirationRecipeStep = z.infer<typeof PluginAIInspirationRecipeStep>;
1395
+ export declare const PluginAIInspirationRecipeDraft: z.ZodObject<{
1396
+ name: z.ZodString;
1397
+ summary: z.ZodString;
1398
+ slots: z.ZodArray<z.ZodObject<{
1399
+ id: z.ZodString;
1400
+ type: z.ZodEnum<{
1401
+ "end-frame": "end-frame";
1402
+ "source-image": "source-image";
1403
+ }>;
1404
+ label: z.ZodString;
1405
+ required: z.ZodBoolean;
1406
+ }, z.core.$strip>>;
1407
+ steps: z.ZodArray<z.ZodObject<{
1408
+ id: z.ZodString;
1409
+ operation: z.ZodObject<{
1410
+ type: z.ZodEnum<{
1411
+ "generate-image": "generate-image";
1412
+ refine: "refine";
1413
+ "generate-video": "generate-video";
1414
+ }>;
1415
+ label: z.ZodString;
1416
+ prompt: z.ZodOptional<z.ZodString>;
1417
+ modelId: z.ZodOptional<z.ZodString>;
1418
+ presetId: z.ZodOptional<z.ZodString>;
1419
+ presetName: z.ZodOptional<z.ZodString>;
1420
+ refineFactor: z.ZodOptional<z.ZodNumber>;
1421
+ sourceRole: z.ZodOptional<z.ZodEnum<{
1422
+ primary: "primary";
1423
+ "end-frame": "end-frame";
1424
+ }>>;
1425
+ video: z.ZodOptional<z.ZodObject<{
1426
+ mode: z.ZodOptional<z.ZodString>;
1427
+ motion: z.ZodOptional<z.ZodString>;
1428
+ duration: z.ZodOptional<z.ZodString>;
1429
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1430
+ }, z.core.$strip>>;
1431
+ generationInput: z.ZodOptional<z.ZodObject<{
1432
+ version: z.ZodLiteral<1>;
1433
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1434
+ regionHint: z.ZodOptional<z.ZodObject<{
1435
+ x: z.ZodNumber;
1436
+ y: z.ZodNumber;
1437
+ w: z.ZodNumber;
1438
+ h: z.ZodNumber;
1439
+ }, z.core.$strip>>;
1440
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1441
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1442
+ }, z.core.$strip>>;
1443
+ }, z.core.$strip>;
1444
+ outputKind: z.ZodEnum<{
1445
+ image: "image";
1446
+ video: "video";
1447
+ }>;
1448
+ }, z.core.$strip>>;
1449
+ outputKind: z.ZodEnum<{
1450
+ image: "image";
1451
+ video: "video";
1452
+ }>;
1453
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
1454
+ }, z.core.$strip>;
1455
+ export type PluginAIInspirationRecipeDraft = z.infer<typeof PluginAIInspirationRecipeDraft>;
1456
+ export declare const PluginAIInspirationRecipe: z.ZodType<PluginAIInspirationRecipeDraft & {
1457
+ version: 1;
1458
+ id: string;
1459
+ fingerprint?: string;
1460
+ createdAt: number;
1461
+ updatedAt: number;
1462
+ }>;
1463
+ export type PluginAIInspirationRecipe = z.infer<typeof PluginAIInspirationRecipe>;
1464
+ export declare const PluginAIInspirationExtractionResult: z.ZodDiscriminatedUnion<[z.ZodObject<{
1465
+ status: z.ZodLiteral<"ready">;
1466
+ draft: z.ZodObject<{
1467
+ name: z.ZodString;
1468
+ summary: z.ZodString;
1469
+ slots: z.ZodArray<z.ZodObject<{
1470
+ id: z.ZodString;
1471
+ type: z.ZodEnum<{
1472
+ "end-frame": "end-frame";
1473
+ "source-image": "source-image";
1474
+ }>;
1475
+ label: z.ZodString;
1476
+ required: z.ZodBoolean;
1477
+ }, z.core.$strip>>;
1478
+ steps: z.ZodArray<z.ZodObject<{
1479
+ id: z.ZodString;
1480
+ operation: z.ZodObject<{
1481
+ type: z.ZodEnum<{
1482
+ "generate-image": "generate-image";
1483
+ refine: "refine";
1484
+ "generate-video": "generate-video";
1485
+ }>;
1486
+ label: z.ZodString;
1487
+ prompt: z.ZodOptional<z.ZodString>;
1488
+ modelId: z.ZodOptional<z.ZodString>;
1489
+ presetId: z.ZodOptional<z.ZodString>;
1490
+ presetName: z.ZodOptional<z.ZodString>;
1491
+ refineFactor: z.ZodOptional<z.ZodNumber>;
1492
+ sourceRole: z.ZodOptional<z.ZodEnum<{
1493
+ primary: "primary";
1494
+ "end-frame": "end-frame";
1495
+ }>>;
1496
+ video: z.ZodOptional<z.ZodObject<{
1497
+ mode: z.ZodOptional<z.ZodString>;
1498
+ motion: z.ZodOptional<z.ZodString>;
1499
+ duration: z.ZodOptional<z.ZodString>;
1500
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1501
+ }, z.core.$strip>>;
1502
+ generationInput: z.ZodOptional<z.ZodObject<{
1503
+ version: z.ZodLiteral<1>;
1504
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1505
+ regionHint: z.ZodOptional<z.ZodObject<{
1506
+ x: z.ZodNumber;
1507
+ y: z.ZodNumber;
1508
+ w: z.ZodNumber;
1509
+ h: z.ZodNumber;
1510
+ }, z.core.$strip>>;
1511
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1512
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1513
+ }, z.core.$strip>>;
1514
+ }, z.core.$strip>;
1515
+ outputKind: z.ZodEnum<{
1516
+ image: "image";
1517
+ video: "video";
1518
+ }>;
1519
+ }, z.core.$strip>>;
1520
+ outputKind: z.ZodEnum<{
1521
+ image: "image";
1522
+ video: "video";
1523
+ }>;
1524
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
1525
+ }, z.core.$strip>;
1526
+ }, z.core.$strip>, z.ZodObject<{
1527
+ status: z.ZodLiteral<"unavailable">;
1528
+ reason: z.ZodEnum<{
1529
+ "not-in-workflow": "not-in-workflow";
1530
+ "source-only": "source-only";
1531
+ "missing-input": "missing-input";
1532
+ "missing-workflow": "missing-workflow";
1533
+ "missing-node": "missing-node";
1534
+ "invalid-workflow": "invalid-workflow";
1535
+ }>;
1536
+ }, z.core.$strip>], "status">;
1537
+ export type PluginAIInspirationExtractionResult = z.infer<typeof PluginAIInspirationExtractionResult>;
1538
+ export declare const PluginAIInspirationListRecipesResult: z.ZodObject<{
1539
+ recipes: z.ZodArray<z.ZodType<{
1540
+ name: string;
1541
+ summary: string;
1542
+ slots: {
1543
+ id: string;
1544
+ type: "end-frame" | "source-image";
1545
+ label: string;
1546
+ required: boolean;
1547
+ }[];
1548
+ steps: {
1549
+ id: string;
1550
+ operation: {
1551
+ type: "generate-image" | "refine" | "generate-video";
1552
+ label: string;
1553
+ prompt?: string | undefined;
1554
+ modelId?: string | undefined;
1555
+ presetId?: string | undefined;
1556
+ presetName?: string | undefined;
1557
+ refineFactor?: number | undefined;
1558
+ sourceRole?: "primary" | "end-frame" | undefined;
1559
+ video?: {
1560
+ mode?: string | undefined;
1561
+ motion?: string | undefined;
1562
+ duration?: string | undefined;
1563
+ endFrameShapeId?: string | undefined;
1564
+ } | undefined;
1565
+ generationInput?: {
1566
+ version: 1;
1567
+ meta: Record<string, JsonValue>;
1568
+ regionHint?: {
1569
+ x: number;
1570
+ y: number;
1571
+ w: number;
1572
+ h: number;
1573
+ } | undefined;
1574
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1575
+ sourceCameraHeading?: number | undefined;
1576
+ } | undefined;
1577
+ };
1578
+ outputKind: "image" | "video";
1579
+ }[];
1580
+ outputKind: "image" | "video";
1581
+ thumbnailUrl?: string | undefined;
1582
+ } & {
1583
+ version: 1;
1584
+ id: string;
1585
+ fingerprint?: string;
1586
+ createdAt: number;
1587
+ updatedAt: number;
1588
+ }, unknown, z.core.$ZodTypeInternals<{
1589
+ name: string;
1590
+ summary: string;
1591
+ slots: {
1592
+ id: string;
1593
+ type: "end-frame" | "source-image";
1594
+ label: string;
1595
+ required: boolean;
1596
+ }[];
1597
+ steps: {
1598
+ id: string;
1599
+ operation: {
1600
+ type: "generate-image" | "refine" | "generate-video";
1601
+ label: string;
1602
+ prompt?: string | undefined;
1603
+ modelId?: string | undefined;
1604
+ presetId?: string | undefined;
1605
+ presetName?: string | undefined;
1606
+ refineFactor?: number | undefined;
1607
+ sourceRole?: "primary" | "end-frame" | undefined;
1608
+ video?: {
1609
+ mode?: string | undefined;
1610
+ motion?: string | undefined;
1611
+ duration?: string | undefined;
1612
+ endFrameShapeId?: string | undefined;
1613
+ } | undefined;
1614
+ generationInput?: {
1615
+ version: 1;
1616
+ meta: Record<string, JsonValue>;
1617
+ regionHint?: {
1618
+ x: number;
1619
+ y: number;
1620
+ w: number;
1621
+ h: number;
1622
+ } | undefined;
1623
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1624
+ sourceCameraHeading?: number | undefined;
1625
+ } | undefined;
1626
+ };
1627
+ outputKind: "image" | "video";
1628
+ }[];
1629
+ outputKind: "image" | "video";
1630
+ thumbnailUrl?: string | undefined;
1631
+ } & {
1632
+ version: 1;
1633
+ id: string;
1634
+ fingerprint?: string;
1635
+ createdAt: number;
1636
+ updatedAt: number;
1637
+ }, unknown>>>;
1638
+ }, z.core.$strip>;
1639
+ export type PluginAIInspirationListRecipesResult = z.infer<typeof PluginAIInspirationListRecipesResult>;
1640
+ export declare const PluginAIInspirationSaveRecipeArgs: z.ZodObject<{
1641
+ draft: z.ZodObject<{
1642
+ name: z.ZodString;
1643
+ summary: z.ZodString;
1644
+ slots: z.ZodArray<z.ZodObject<{
1645
+ id: z.ZodString;
1646
+ type: z.ZodEnum<{
1647
+ "end-frame": "end-frame";
1648
+ "source-image": "source-image";
1649
+ }>;
1650
+ label: z.ZodString;
1651
+ required: z.ZodBoolean;
1652
+ }, z.core.$strip>>;
1653
+ steps: z.ZodArray<z.ZodObject<{
1654
+ id: z.ZodString;
1655
+ operation: z.ZodObject<{
1656
+ type: z.ZodEnum<{
1657
+ "generate-image": "generate-image";
1658
+ refine: "refine";
1659
+ "generate-video": "generate-video";
1660
+ }>;
1661
+ label: z.ZodString;
1662
+ prompt: z.ZodOptional<z.ZodString>;
1663
+ modelId: z.ZodOptional<z.ZodString>;
1664
+ presetId: z.ZodOptional<z.ZodString>;
1665
+ presetName: z.ZodOptional<z.ZodString>;
1666
+ refineFactor: z.ZodOptional<z.ZodNumber>;
1667
+ sourceRole: z.ZodOptional<z.ZodEnum<{
1668
+ primary: "primary";
1669
+ "end-frame": "end-frame";
1670
+ }>>;
1671
+ video: z.ZodOptional<z.ZodObject<{
1672
+ mode: z.ZodOptional<z.ZodString>;
1673
+ motion: z.ZodOptional<z.ZodString>;
1674
+ duration: z.ZodOptional<z.ZodString>;
1675
+ endFrameShapeId: z.ZodOptional<z.ZodString>;
1676
+ }, z.core.$strip>>;
1677
+ generationInput: z.ZodOptional<z.ZodObject<{
1678
+ version: z.ZodLiteral<1>;
1679
+ meta: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>;
1680
+ regionHint: z.ZodOptional<z.ZodObject<{
1681
+ x: z.ZodNumber;
1682
+ y: z.ZodNumber;
1683
+ w: z.ZodNumber;
1684
+ h: z.ZodNumber;
1685
+ }, z.core.$strip>>;
1686
+ sketchGuidance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1687
+ sourceCameraHeading: z.ZodOptional<z.ZodNumber>;
1688
+ }, z.core.$strip>>;
1689
+ }, z.core.$strip>;
1690
+ outputKind: z.ZodEnum<{
1691
+ image: "image";
1692
+ video: "video";
1693
+ }>;
1694
+ }, z.core.$strip>>;
1695
+ outputKind: z.ZodEnum<{
1696
+ image: "image";
1697
+ video: "video";
1698
+ }>;
1699
+ thumbnailUrl: z.ZodOptional<z.ZodString>;
1700
+ }, z.core.$strip>;
1701
+ name: z.ZodString;
1702
+ }, z.core.$strip>;
1703
+ export type PluginAIInspirationSaveRecipeArgs = z.infer<typeof PluginAIInspirationSaveRecipeArgs>;
1704
+ export declare const PluginAIInspirationSaveRecipeResult: z.ZodDiscriminatedUnion<[z.ZodObject<{
1705
+ status: z.ZodLiteral<"saved">;
1706
+ recipe: z.ZodType<{
1707
+ name: string;
1708
+ summary: string;
1709
+ slots: {
1710
+ id: string;
1711
+ type: "end-frame" | "source-image";
1712
+ label: string;
1713
+ required: boolean;
1714
+ }[];
1715
+ steps: {
1716
+ id: string;
1717
+ operation: {
1718
+ type: "generate-image" | "refine" | "generate-video";
1719
+ label: string;
1720
+ prompt?: string | undefined;
1721
+ modelId?: string | undefined;
1722
+ presetId?: string | undefined;
1723
+ presetName?: string | undefined;
1724
+ refineFactor?: number | undefined;
1725
+ sourceRole?: "primary" | "end-frame" | undefined;
1726
+ video?: {
1727
+ mode?: string | undefined;
1728
+ motion?: string | undefined;
1729
+ duration?: string | undefined;
1730
+ endFrameShapeId?: string | undefined;
1731
+ } | undefined;
1732
+ generationInput?: {
1733
+ version: 1;
1734
+ meta: Record<string, JsonValue>;
1735
+ regionHint?: {
1736
+ x: number;
1737
+ y: number;
1738
+ w: number;
1739
+ h: number;
1740
+ } | undefined;
1741
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1742
+ sourceCameraHeading?: number | undefined;
1743
+ } | undefined;
1744
+ };
1745
+ outputKind: "image" | "video";
1746
+ }[];
1747
+ outputKind: "image" | "video";
1748
+ thumbnailUrl?: string | undefined;
1749
+ } & {
1750
+ version: 1;
1751
+ id: string;
1752
+ fingerprint?: string;
1753
+ createdAt: number;
1754
+ updatedAt: number;
1755
+ }, unknown, z.core.$ZodTypeInternals<{
1756
+ name: string;
1757
+ summary: string;
1758
+ slots: {
1759
+ id: string;
1760
+ type: "end-frame" | "source-image";
1761
+ label: string;
1762
+ required: boolean;
1763
+ }[];
1764
+ steps: {
1765
+ id: string;
1766
+ operation: {
1767
+ type: "generate-image" | "refine" | "generate-video";
1768
+ label: string;
1769
+ prompt?: string | undefined;
1770
+ modelId?: string | undefined;
1771
+ presetId?: string | undefined;
1772
+ presetName?: string | undefined;
1773
+ refineFactor?: number | undefined;
1774
+ sourceRole?: "primary" | "end-frame" | undefined;
1775
+ video?: {
1776
+ mode?: string | undefined;
1777
+ motion?: string | undefined;
1778
+ duration?: string | undefined;
1779
+ endFrameShapeId?: string | undefined;
1780
+ } | undefined;
1781
+ generationInput?: {
1782
+ version: 1;
1783
+ meta: Record<string, JsonValue>;
1784
+ regionHint?: {
1785
+ x: number;
1786
+ y: number;
1787
+ w: number;
1788
+ h: number;
1789
+ } | undefined;
1790
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1791
+ sourceCameraHeading?: number | undefined;
1792
+ } | undefined;
1793
+ };
1794
+ outputKind: "image" | "video";
1795
+ }[];
1796
+ outputKind: "image" | "video";
1797
+ thumbnailUrl?: string | undefined;
1798
+ } & {
1799
+ version: 1;
1800
+ id: string;
1801
+ fingerprint?: string;
1802
+ createdAt: number;
1803
+ updatedAt: number;
1804
+ }, unknown>>;
1805
+ }, z.core.$strip>, z.ZodObject<{
1806
+ status: z.ZodLiteral<"duplicate">;
1807
+ recipe: z.ZodType<{
1808
+ name: string;
1809
+ summary: string;
1810
+ slots: {
1811
+ id: string;
1812
+ type: "end-frame" | "source-image";
1813
+ label: string;
1814
+ required: boolean;
1815
+ }[];
1816
+ steps: {
1817
+ id: string;
1818
+ operation: {
1819
+ type: "generate-image" | "refine" | "generate-video";
1820
+ label: string;
1821
+ prompt?: string | undefined;
1822
+ modelId?: string | undefined;
1823
+ presetId?: string | undefined;
1824
+ presetName?: string | undefined;
1825
+ refineFactor?: number | undefined;
1826
+ sourceRole?: "primary" | "end-frame" | undefined;
1827
+ video?: {
1828
+ mode?: string | undefined;
1829
+ motion?: string | undefined;
1830
+ duration?: string | undefined;
1831
+ endFrameShapeId?: string | undefined;
1832
+ } | undefined;
1833
+ generationInput?: {
1834
+ version: 1;
1835
+ meta: Record<string, JsonValue>;
1836
+ regionHint?: {
1837
+ x: number;
1838
+ y: number;
1839
+ w: number;
1840
+ h: number;
1841
+ } | undefined;
1842
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1843
+ sourceCameraHeading?: number | undefined;
1844
+ } | undefined;
1845
+ };
1846
+ outputKind: "image" | "video";
1847
+ }[];
1848
+ outputKind: "image" | "video";
1849
+ thumbnailUrl?: string | undefined;
1850
+ } & {
1851
+ version: 1;
1852
+ id: string;
1853
+ fingerprint?: string;
1854
+ createdAt: number;
1855
+ updatedAt: number;
1856
+ }, unknown, z.core.$ZodTypeInternals<{
1857
+ name: string;
1858
+ summary: string;
1859
+ slots: {
1860
+ id: string;
1861
+ type: "end-frame" | "source-image";
1862
+ label: string;
1863
+ required: boolean;
1864
+ }[];
1865
+ steps: {
1866
+ id: string;
1867
+ operation: {
1868
+ type: "generate-image" | "refine" | "generate-video";
1869
+ label: string;
1870
+ prompt?: string | undefined;
1871
+ modelId?: string | undefined;
1872
+ presetId?: string | undefined;
1873
+ presetName?: string | undefined;
1874
+ refineFactor?: number | undefined;
1875
+ sourceRole?: "primary" | "end-frame" | undefined;
1876
+ video?: {
1877
+ mode?: string | undefined;
1878
+ motion?: string | undefined;
1879
+ duration?: string | undefined;
1880
+ endFrameShapeId?: string | undefined;
1881
+ } | undefined;
1882
+ generationInput?: {
1883
+ version: 1;
1884
+ meta: Record<string, JsonValue>;
1885
+ regionHint?: {
1886
+ x: number;
1887
+ y: number;
1888
+ w: number;
1889
+ h: number;
1890
+ } | undefined;
1891
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1892
+ sourceCameraHeading?: number | undefined;
1893
+ } | undefined;
1894
+ };
1895
+ outputKind: "image" | "video";
1896
+ }[];
1897
+ outputKind: "image" | "video";
1898
+ thumbnailUrl?: string | undefined;
1899
+ } & {
1900
+ version: 1;
1901
+ id: string;
1902
+ fingerprint?: string;
1903
+ createdAt: number;
1904
+ updatedAt: number;
1905
+ }, unknown>>;
1906
+ }, z.core.$strip>, z.ZodObject<{
1907
+ status: z.ZodLiteral<"invalid-name">;
1908
+ recipe: z.ZodNull;
1909
+ }, z.core.$strip>, z.ZodObject<{
1910
+ status: z.ZodLiteral<"failed">;
1911
+ recipe: z.ZodNull;
1912
+ }, z.core.$strip>], "status">;
1913
+ export type PluginAIInspirationSaveRecipeResult = z.infer<typeof PluginAIInspirationSaveRecipeResult>;
1914
+ export declare const PluginAIInspirationDeleteRecipeArgs: z.ZodObject<{
1915
+ recipeId: z.ZodString;
1916
+ }, z.core.$strip>;
1917
+ export type PluginAIInspirationDeleteRecipeArgs = z.infer<typeof PluginAIInspirationDeleteRecipeArgs>;
1918
+ export declare const PluginAIInspirationDeleteRecipeResult: z.ZodObject<{
1919
+ deleted: z.ZodBoolean;
1920
+ }, z.core.$strip>;
1921
+ export type PluginAIInspirationDeleteRecipeResult = z.infer<typeof PluginAIInspirationDeleteRecipeResult>;
1922
+ export declare const PluginAIInspirationExtractRecipeFromShapeArgs: z.ZodObject<{
1923
+ shapeId: z.ZodString;
1924
+ }, z.core.$strip>;
1925
+ export type PluginAIInspirationExtractRecipeFromShapeArgs = z.infer<typeof PluginAIInspirationExtractRecipeFromShapeArgs>;
1926
+ export declare const PluginAIInspirationRunRecipeArgs: z.ZodObject<{
1927
+ recipeId: z.ZodOptional<z.ZodString>;
1928
+ recipe: z.ZodOptional<z.ZodType<{
1929
+ name: string;
1930
+ summary: string;
1931
+ slots: {
1932
+ id: string;
1933
+ type: "end-frame" | "source-image";
1934
+ label: string;
1935
+ required: boolean;
1936
+ }[];
1937
+ steps: {
1938
+ id: string;
1939
+ operation: {
1940
+ type: "generate-image" | "refine" | "generate-video";
1941
+ label: string;
1942
+ prompt?: string | undefined;
1943
+ modelId?: string | undefined;
1944
+ presetId?: string | undefined;
1945
+ presetName?: string | undefined;
1946
+ refineFactor?: number | undefined;
1947
+ sourceRole?: "primary" | "end-frame" | undefined;
1948
+ video?: {
1949
+ mode?: string | undefined;
1950
+ motion?: string | undefined;
1951
+ duration?: string | undefined;
1952
+ endFrameShapeId?: string | undefined;
1953
+ } | undefined;
1954
+ generationInput?: {
1955
+ version: 1;
1956
+ meta: Record<string, JsonValue>;
1957
+ regionHint?: {
1958
+ x: number;
1959
+ y: number;
1960
+ w: number;
1961
+ h: number;
1962
+ } | undefined;
1963
+ sketchGuidance?: Record<string, JsonValue> | undefined;
1964
+ sourceCameraHeading?: number | undefined;
1965
+ } | undefined;
1966
+ };
1967
+ outputKind: "image" | "video";
1968
+ }[];
1969
+ outputKind: "image" | "video";
1970
+ thumbnailUrl?: string | undefined;
1971
+ } & {
1972
+ version: 1;
1973
+ id: string;
1974
+ fingerprint?: string;
1975
+ createdAt: number;
1976
+ updatedAt: number;
1977
+ }, unknown, z.core.$ZodTypeInternals<{
1978
+ name: string;
1979
+ summary: string;
1980
+ slots: {
1981
+ id: string;
1982
+ type: "end-frame" | "source-image";
1983
+ label: string;
1984
+ required: boolean;
1985
+ }[];
1986
+ steps: {
1987
+ id: string;
1988
+ operation: {
1989
+ type: "generate-image" | "refine" | "generate-video";
1990
+ label: string;
1991
+ prompt?: string | undefined;
1992
+ modelId?: string | undefined;
1993
+ presetId?: string | undefined;
1994
+ presetName?: string | undefined;
1995
+ refineFactor?: number | undefined;
1996
+ sourceRole?: "primary" | "end-frame" | undefined;
1997
+ video?: {
1998
+ mode?: string | undefined;
1999
+ motion?: string | undefined;
2000
+ duration?: string | undefined;
2001
+ endFrameShapeId?: string | undefined;
2002
+ } | undefined;
2003
+ generationInput?: {
2004
+ version: 1;
2005
+ meta: Record<string, JsonValue>;
2006
+ regionHint?: {
2007
+ x: number;
2008
+ y: number;
2009
+ w: number;
2010
+ h: number;
2011
+ } | undefined;
2012
+ sketchGuidance?: Record<string, JsonValue> | undefined;
2013
+ sourceCameraHeading?: number | undefined;
2014
+ } | undefined;
2015
+ };
2016
+ outputKind: "image" | "video";
2017
+ }[];
2018
+ outputKind: "image" | "video";
2019
+ thumbnailUrl?: string | undefined;
2020
+ } & {
2021
+ version: 1;
2022
+ id: string;
2023
+ fingerprint?: string;
2024
+ createdAt: number;
2025
+ updatedAt: number;
2026
+ }, unknown>>>;
2027
+ slotShapeIds: z.ZodRecord<z.ZodString, z.ZodString>;
2028
+ runMode: z.ZodOptional<z.ZodEnum<{
2029
+ blocking: "blocking";
2030
+ job: "job";
2031
+ }>>;
2032
+ }, z.core.$strip>;
2033
+ export type PluginAIInspirationRunRecipeArgs = z.infer<typeof PluginAIInspirationRunRecipeArgs>;
2034
+ /**
2035
+ * Present-mode AI Inspiration APIs.
2036
+ *
2037
+ * These APIs operate on Present canvas shape IDs and inherit the current user's
2038
+ * AI quota. They create outputs on the Present canvas; pure backend generation
2039
+ * without canvas output is intentionally out of scope.
2040
+ *
2041
+ * Accessed via `snaptrude.documentation.aiInspiration`.
2042
+ */
2043
+ export declare abstract class PluginDocumentationAIInspirationApi {
2044
+ constructor();
2045
+ /**
2046
+ * List AI Inspiration models that can be used for generation.
2047
+ *
2048
+ * @returns The default model ID and available model descriptors.
2049
+ */
2050
+ abstract listModels(): PluginApiReturn<PluginAIInspirationListModelsResult>;
2051
+ /**
2052
+ * Get capability flags for a model.
2053
+ *
2054
+ * @param args - Object containing `modelId`.
2055
+ * @returns Capability flags such as reference, site-context, region, and keyframe support.
2056
+ */
2057
+ abstract getModelCapabilities(args: PluginAIInspirationGetModelCapabilitiesArgs): PluginApiReturn<PluginAIInspirationGetModelCapabilitiesResult>;
2058
+ /**
2059
+ * List image/view/video sources on the current Present page.
2060
+ *
2061
+ * @param args - Optional filters. Set `includeGenerated` to include AI outputs.
2062
+ * @returns Serializable shape references using Present canvas shape IDs.
2063
+ */
2064
+ abstract listSources(args: PluginAIInspirationListSourcesArgs): PluginApiReturn<PluginAIInspirationListSourcesResult>;
2065
+ /**
2066
+ * Get selected Present canvas shapes that AI Inspiration can use.
2067
+ *
2068
+ * @returns Selected shape IDs and resolved source references.
2069
+ */
2070
+ abstract getSelection(): PluginApiReturn<PluginAIInspirationGetSelectionResult>;
2071
+ /**
2072
+ * Get the curated AI Inspiration preset catalog.
2073
+ *
2074
+ * @returns Preset categories and presets.
2075
+ */
2076
+ abstract getPresetCatalog(): PluginApiReturn<PluginAIInspirationGetPresetCatalogResult>;
2077
+ /**
2078
+ * Generate an image or video from a Present canvas source.
2079
+ *
2080
+ * @param args - Generation options including source, prompt, model, references, site context,
2081
+ * region guidance, sketch guidance, and video options.
2082
+ * @returns A canvas output in blocking mode or a job ID in job mode.
2083
+ */
2084
+ abstract generate(args: PluginAIInspirationGenerateArgs): PluginApiReturn<PluginAIInspirationRunResult>;
2085
+ /**
2086
+ * Refine/upscale an AI Inspiration source image.
2087
+ *
2088
+ * @param args - Source shape, optional upscale factor, and run mode.
2089
+ * @returns A canvas output in blocking mode or a job ID in job mode.
2090
+ */
2091
+ abstract refine(args: PluginAIInspirationRefineArgs): PluginApiReturn<PluginAIInspirationRunResult>;
2092
+ /** Get a transient AI Inspiration job by ID. */
2093
+ abstract getJob(args: PluginAIInspirationJobArgs): PluginApiReturn<PluginAIInspirationGetJobResult>;
2094
+ /** Cancel a transient AI Inspiration job. */
2095
+ abstract cancelJob(args: PluginAIInspirationJobArgs): PluginApiReturn<PluginAIInspirationCancelJobResult>;
2096
+ /** List transient AI Inspiration jobs created in the current host session. */
2097
+ abstract listJobs(): PluginApiReturn<PluginAIInspirationListJobsResult>;
2098
+ /**
2099
+ * Get the sanitized workflow graph containing a Present shape.
2100
+ *
2101
+ * @param args - Object containing `shapeId`.
2102
+ * @returns The workflow and matching node, or `null` values when the shape is not in a workflow.
2103
+ */
2104
+ abstract getWorkflowForShape(args: PluginAIInspirationGetWorkflowForShapeArgs): PluginApiReturn<PluginAIInspirationGetWorkflowForShapeResult>;
2105
+ /**
2106
+ * Build a rerun plan for the selected workflow branch ending at a shape.
2107
+ *
2108
+ * @param args - Object containing `shapeId`.
2109
+ * @returns Ready plan data or an unavailable reason.
2110
+ */
2111
+ abstract getSelectedBranchRerunPlan(args: PluginAIInspirationGetWorkflowForShapeArgs): PluginApiReturn<PluginAIInspirationRerunPlanResult>;
2112
+ /**
2113
+ * Rerun the selected workflow branch and supersede the previous branch.
2114
+ *
2115
+ * @param args - Selected shape, optional end frame shape, and run mode.
2116
+ * @returns New canvas outputs in blocking mode or a job ID in job mode.
2117
+ */
2118
+ abstract rerunSelectedBranch(args: PluginAIInspirationRerunSelectedBranchArgs): PluginApiReturn<PluginAIInspirationRunResult>;
2119
+ /**
2120
+ * Extract a reusable recipe draft from the workflow path ending at a shape.
2121
+ *
2122
+ * @param args - Object containing `shapeId`.
2123
+ * @returns A recipe draft or an unavailable reason.
2124
+ */
2125
+ abstract extractRecipeFromShape(args: PluginAIInspirationExtractRecipeFromShapeArgs): PluginApiReturn<PluginAIInspirationExtractionResult>;
2126
+ /**
2127
+ * List project-level AI Inspiration recipes stored in Present document metadata.
2128
+ *
2129
+ * @returns Saved project recipes.
2130
+ */
2131
+ abstract listRecipes(): PluginApiReturn<PluginAIInspirationListRecipesResult>;
2132
+ /**
2133
+ * Save a project-level AI Inspiration recipe.
2134
+ *
2135
+ * @param args - Recipe draft and desired name.
2136
+ * @returns Saved, duplicate, invalid-name, or failed status.
2137
+ */
2138
+ abstract saveRecipe(args: PluginAIInspirationSaveRecipeArgs): PluginApiReturn<PluginAIInspirationSaveRecipeResult>;
2139
+ /**
2140
+ * Delete a project-level AI Inspiration recipe.
2141
+ *
2142
+ * @param args - Object containing `recipeId`.
2143
+ * @returns Whether a recipe was deleted.
2144
+ */
2145
+ abstract deleteRecipe(args: PluginAIInspirationDeleteRecipeArgs): PluginApiReturn<PluginAIInspirationDeleteRecipeResult>;
2146
+ /**
2147
+ * Run a saved or inline recipe against Present canvas slot shapes.
2148
+ *
2149
+ * @param args - Saved `recipeId` or inline `recipe`, slot shape IDs, and run mode.
2150
+ * @returns Canvas outputs in blocking mode or a job ID in job mode.
2151
+ */
2152
+ abstract runRecipe(args: PluginAIInspirationRunRecipeArgs): PluginApiReturn<PluginAIInspirationRunResult>;
2153
+ }
2154
+ export {};
2155
+ //# sourceMappingURL=aiInspiration.d.ts.map