@snaptrude/plugin-core 0.7.0 → 0.7.1
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/CHANGELOG.md +8 -0
- package/api-manifest.json +320 -1343
- package/dist/api/presentation/aiInspiration.d.ts +1967 -7
- package/dist/api/presentation/aiInspiration.d.ts.map +1 -1
- package/dist/api/presentation/index.d.ts +2 -3
- package/dist/api/presentation/index.d.ts.map +1 -1
- package/dist/index.cjs +367 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +326 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/presentation/aiInspiration.ts +761 -7
- package/src/api/presentation/index.ts +2 -3
- package/api-manifest.full.json +0 -6101
package/dist/index.js
CHANGED
|
@@ -3164,12 +3164,19 @@ var JsonPrimitive = z65.union([z65.string(), z65.number(), z65.boolean(), z65.nu
|
|
|
3164
3164
|
var JsonValue = z65.lazy(
|
|
3165
3165
|
() => z65.union([JsonPrimitive, z65.array(JsonValue), z65.record(z65.string(), JsonValue)])
|
|
3166
3166
|
);
|
|
3167
|
+
var PluginAIInspirationRunMode = z65.enum(["blocking", "job"]);
|
|
3167
3168
|
var PluginAIInspirationOutputKind = z65.enum([
|
|
3168
3169
|
"source",
|
|
3169
3170
|
"image",
|
|
3170
3171
|
"video"
|
|
3171
3172
|
]);
|
|
3172
3173
|
var PluginAIInspirationModelOutput = z65.enum(["image", "video"]);
|
|
3174
|
+
var PluginAIInspirationRuntimeProvider = z65.enum(["gpt", "fal"]);
|
|
3175
|
+
var PluginAIInspirationPromptStrategy = z65.enum([
|
|
3176
|
+
"gpt-image",
|
|
3177
|
+
"fal-image",
|
|
3178
|
+
"fal-video"
|
|
3179
|
+
]);
|
|
3173
3180
|
var PluginAIInspirationShapeKind = z65.enum(["image", "view", "video"]);
|
|
3174
3181
|
var PluginAIInspirationVideoMode = z65.enum([
|
|
3175
3182
|
"animate",
|
|
@@ -3183,6 +3190,20 @@ var PluginAIInspirationVideoMotion = z65.enum([
|
|
|
3183
3190
|
"reveal"
|
|
3184
3191
|
]);
|
|
3185
3192
|
var PluginAIInspirationVideoDuration = z65.enum(["4s", "6s", "8s"]);
|
|
3193
|
+
var PluginAIInspirationJobStatus = z65.enum([
|
|
3194
|
+
"queued",
|
|
3195
|
+
"running",
|
|
3196
|
+
"completed",
|
|
3197
|
+
"failed",
|
|
3198
|
+
"cancelled"
|
|
3199
|
+
]);
|
|
3200
|
+
var PluginAIInspirationWorkflowRunState = z65.enum([
|
|
3201
|
+
"current",
|
|
3202
|
+
"stale",
|
|
3203
|
+
"running",
|
|
3204
|
+
"failed",
|
|
3205
|
+
"superseded"
|
|
3206
|
+
]);
|
|
3186
3207
|
var PluginAIInspirationRegionHint = z65.object({
|
|
3187
3208
|
x: z65.number().finite(),
|
|
3188
3209
|
y: z65.number().finite(),
|
|
@@ -3247,10 +3268,29 @@ var PluginAIInspirationModel = z65.object({
|
|
|
3247
3268
|
output: PluginAIInspirationModelOutput,
|
|
3248
3269
|
isDefault: z65.boolean().optional()
|
|
3249
3270
|
});
|
|
3271
|
+
var PluginAIInspirationModelCapability = z65.object({
|
|
3272
|
+
id: z65.string(),
|
|
3273
|
+
output: PluginAIInspirationModelOutput,
|
|
3274
|
+
provider: PluginAIInspirationRuntimeProvider,
|
|
3275
|
+
supportsRegionEdit: z65.boolean(),
|
|
3276
|
+
supportsReferenceImages: z65.boolean(),
|
|
3277
|
+
supportsStylePresets: z65.boolean(),
|
|
3278
|
+
supportsSiteContext: z65.boolean(),
|
|
3279
|
+
supportsSketchGuidance: z65.boolean(),
|
|
3280
|
+
supportsKeyframes: z65.boolean(),
|
|
3281
|
+
maxExtraImages: z65.number().int().nonnegative(),
|
|
3282
|
+
promptStrategy: PluginAIInspirationPromptStrategy
|
|
3283
|
+
});
|
|
3250
3284
|
var PluginAIInspirationListModelsResult = z65.object({
|
|
3251
3285
|
defaultModelId: z65.string(),
|
|
3252
3286
|
models: z65.array(PluginAIInspirationModel)
|
|
3253
3287
|
});
|
|
3288
|
+
var PluginAIInspirationGetModelCapabilitiesArgs = z65.object({
|
|
3289
|
+
modelId: z65.string().min(1)
|
|
3290
|
+
});
|
|
3291
|
+
var PluginAIInspirationGetModelCapabilitiesResult = z65.object({
|
|
3292
|
+
capability: PluginAIInspirationModelCapability
|
|
3293
|
+
});
|
|
3254
3294
|
var PluginAIInspirationShapeRef = z65.object({
|
|
3255
3295
|
shapeId: z65.string(),
|
|
3256
3296
|
assetId: z65.string().optional(),
|
|
@@ -3268,6 +3308,39 @@ var PluginAIInspirationListSourcesArgs = z65.object({
|
|
|
3268
3308
|
var PluginAIInspirationListSourcesResult = z65.object({
|
|
3269
3309
|
sources: z65.array(PluginAIInspirationShapeRef)
|
|
3270
3310
|
});
|
|
3311
|
+
var PluginAIInspirationGetSelectionResult = z65.object({
|
|
3312
|
+
selectedShapeIds: z65.array(z65.string()),
|
|
3313
|
+
sources: z65.array(PluginAIInspirationShapeRef)
|
|
3314
|
+
});
|
|
3315
|
+
var PluginAIInspirationPresetReferenceImage = z65.object({
|
|
3316
|
+
url: z65.string(),
|
|
3317
|
+
label: z65.string().optional(),
|
|
3318
|
+
weight: z65.number().finite().optional()
|
|
3319
|
+
});
|
|
3320
|
+
var PluginAIInspirationPreset = z65.object({
|
|
3321
|
+
id: z65.string(),
|
|
3322
|
+
name: z65.string(),
|
|
3323
|
+
source: z65.enum(["curated", "user"]),
|
|
3324
|
+
modelId: z65.string(),
|
|
3325
|
+
categoryId: z65.string().optional(),
|
|
3326
|
+
categoryLabel: z65.string().optional(),
|
|
3327
|
+
description: z65.string().optional(),
|
|
3328
|
+
previewImageUrl: z65.string().optional(),
|
|
3329
|
+
prompt: z65.string().optional(),
|
|
3330
|
+
stylePrompt: z65.string().optional(),
|
|
3331
|
+
tags: z65.array(z65.string()).optional(),
|
|
3332
|
+
referenceImages: z65.array(PluginAIInspirationPresetReferenceImage).optional(),
|
|
3333
|
+
siteDefaults: PluginAIInspirationAppliedPreset.shape.siteDefaults.optional()
|
|
3334
|
+
});
|
|
3335
|
+
var PluginAIInspirationPresetCategory = z65.object({
|
|
3336
|
+
id: z65.string(),
|
|
3337
|
+
label: z65.string(),
|
|
3338
|
+
description: z65.string().optional()
|
|
3339
|
+
});
|
|
3340
|
+
var PluginAIInspirationGetPresetCatalogResult = z65.object({
|
|
3341
|
+
categories: z65.array(PluginAIInspirationPresetCategory),
|
|
3342
|
+
presets: z65.array(PluginAIInspirationPreset)
|
|
3343
|
+
});
|
|
3271
3344
|
var PluginAIInspirationOutput = z65.object({
|
|
3272
3345
|
outputType: z65.enum(["image", "video"]),
|
|
3273
3346
|
shapeId: z65.string(),
|
|
@@ -3295,15 +3368,224 @@ var PluginAIInspirationGenerateArgs = z65.object({
|
|
|
3295
3368
|
site: PluginAIInspirationSiteOptions.optional(),
|
|
3296
3369
|
regionHint: PluginAIInspirationRegionHint.optional(),
|
|
3297
3370
|
sketchGuidance: PluginAIInspirationSketchGuidance.optional(),
|
|
3298
|
-
video: PluginAIInspirationVideoOptions.optional()
|
|
3371
|
+
video: PluginAIInspirationVideoOptions.optional(),
|
|
3372
|
+
runMode: PluginAIInspirationRunMode.optional()
|
|
3299
3373
|
});
|
|
3300
3374
|
var PluginAIInspirationRunResult = z65.object({
|
|
3301
|
-
|
|
3375
|
+
jobId: z65.string().optional(),
|
|
3376
|
+
output: PluginAIInspirationOutput.optional(),
|
|
3377
|
+
outputs: z65.array(PluginAIInspirationOutput).optional(),
|
|
3302
3378
|
metadata: PluginAIInspirationRunMetadata.optional()
|
|
3303
3379
|
});
|
|
3304
3380
|
var PluginAIInspirationRefineArgs = z65.object({
|
|
3305
3381
|
sourceShapeId: z65.string().min(1),
|
|
3306
|
-
upscaleFactor: z65.union([z65.literal(1.5), z65.literal(2), z65.literal(4)]).optional()
|
|
3382
|
+
upscaleFactor: z65.union([z65.literal(1.5), z65.literal(2), z65.literal(4)]).optional(),
|
|
3383
|
+
runMode: PluginAIInspirationRunMode.optional()
|
|
3384
|
+
});
|
|
3385
|
+
var PluginAIInspirationJobProgress = z65.object({
|
|
3386
|
+
currentStep: z65.number().int().nonnegative().optional(),
|
|
3387
|
+
totalSteps: z65.number().int().nonnegative().optional(),
|
|
3388
|
+
message: z65.string().optional()
|
|
3389
|
+
});
|
|
3390
|
+
var PluginAIInspirationJob = z65.object({
|
|
3391
|
+
jobId: z65.string(),
|
|
3392
|
+
status: PluginAIInspirationJobStatus,
|
|
3393
|
+
createdAt: z65.number(),
|
|
3394
|
+
updatedAt: z65.number(),
|
|
3395
|
+
completedAt: z65.number().optional(),
|
|
3396
|
+
method: z65.string(),
|
|
3397
|
+
progress: PluginAIInspirationJobProgress.optional(),
|
|
3398
|
+
result: PluginAIInspirationRunResult.optional(),
|
|
3399
|
+
error: z65.string().optional()
|
|
3400
|
+
});
|
|
3401
|
+
var PluginAIInspirationJobArgs = z65.object({
|
|
3402
|
+
jobId: z65.string().min(1)
|
|
3403
|
+
});
|
|
3404
|
+
var PluginAIInspirationGetJobResult = z65.object({
|
|
3405
|
+
job: PluginAIInspirationJob
|
|
3406
|
+
});
|
|
3407
|
+
var PluginAIInspirationCancelJobResult = z65.object({
|
|
3408
|
+
job: PluginAIInspirationJob
|
|
3409
|
+
});
|
|
3410
|
+
var PluginAIInspirationListJobsResult = z65.object({
|
|
3411
|
+
jobs: z65.array(PluginAIInspirationJob)
|
|
3412
|
+
});
|
|
3413
|
+
var PluginAIInspirationWorkflowVideoConfig = z65.object({
|
|
3414
|
+
mode: z65.string().optional(),
|
|
3415
|
+
motion: z65.string().optional(),
|
|
3416
|
+
duration: z65.string().optional(),
|
|
3417
|
+
endFrameShapeId: z65.string().optional()
|
|
3418
|
+
});
|
|
3419
|
+
var PluginAIInspirationGenerationInputSnapshot = z65.object({
|
|
3420
|
+
version: z65.literal(1),
|
|
3421
|
+
meta: z65.record(z65.string(), JsonValue),
|
|
3422
|
+
regionHint: PluginAIInspirationRegionHint.optional(),
|
|
3423
|
+
sketchGuidance: z65.record(z65.string(), JsonValue).optional(),
|
|
3424
|
+
sourceCameraHeading: z65.number().finite().optional()
|
|
3425
|
+
});
|
|
3426
|
+
var PluginAIInspirationWorkflowOperation = z65.object({
|
|
3427
|
+
type: z65.enum(["generate-image", "refine", "generate-video"]),
|
|
3428
|
+
label: z65.string(),
|
|
3429
|
+
prompt: z65.string().optional(),
|
|
3430
|
+
modelId: z65.string().optional(),
|
|
3431
|
+
presetId: z65.string().optional(),
|
|
3432
|
+
presetName: z65.string().optional(),
|
|
3433
|
+
refineFactor: z65.number().finite().optional(),
|
|
3434
|
+
sourceRole: z65.enum(["primary", "end-frame"]).optional(),
|
|
3435
|
+
video: PluginAIInspirationWorkflowVideoConfig.optional(),
|
|
3436
|
+
generationInput: PluginAIInspirationGenerationInputSnapshot.optional()
|
|
3437
|
+
});
|
|
3438
|
+
var PluginAIInspirationWorkflowNode = z65.object({
|
|
3439
|
+
id: z65.string(),
|
|
3440
|
+
shapeId: z65.string(),
|
|
3441
|
+
assetId: z65.string().optional(),
|
|
3442
|
+
kind: PluginAIInspirationOutputKind,
|
|
3443
|
+
state: z65.string(),
|
|
3444
|
+
runState: PluginAIInspirationWorkflowRunState.optional(),
|
|
3445
|
+
staleReason: z65.string().optional(),
|
|
3446
|
+
incomingEdgeIds: z65.array(z65.string()),
|
|
3447
|
+
outgoingEdgeIds: z65.array(z65.string()),
|
|
3448
|
+
createdAt: z65.number(),
|
|
3449
|
+
updatedAt: z65.number()
|
|
3450
|
+
});
|
|
3451
|
+
var PluginAIInspirationWorkflowEdge = z65.object({
|
|
3452
|
+
id: z65.string(),
|
|
3453
|
+
sourceNodeId: z65.string(),
|
|
3454
|
+
targetNodeId: z65.string(),
|
|
3455
|
+
arrowShapeId: z65.string().optional(),
|
|
3456
|
+
operation: PluginAIInspirationWorkflowOperation,
|
|
3457
|
+
state: z65.string(),
|
|
3458
|
+
runState: PluginAIInspirationWorkflowRunState.optional(),
|
|
3459
|
+
staleReason: z65.string().optional(),
|
|
3460
|
+
supersededByEdgeId: z65.string().optional(),
|
|
3461
|
+
createdAt: z65.number(),
|
|
3462
|
+
updatedAt: z65.number()
|
|
3463
|
+
});
|
|
3464
|
+
var PluginAIInspirationWorkflow = z65.object({
|
|
3465
|
+
id: z65.string(),
|
|
3466
|
+
rootNodeIds: z65.array(z65.string()),
|
|
3467
|
+
nodeIds: z65.array(z65.string()),
|
|
3468
|
+
edgeIds: z65.array(z65.string()),
|
|
3469
|
+
nodes: z65.record(z65.string(), PluginAIInspirationWorkflowNode),
|
|
3470
|
+
edges: z65.record(z65.string(), PluginAIInspirationWorkflowEdge),
|
|
3471
|
+
createdAt: z65.number(),
|
|
3472
|
+
updatedAt: z65.number()
|
|
3473
|
+
});
|
|
3474
|
+
var PluginAIInspirationGetWorkflowForShapeArgs = z65.object({
|
|
3475
|
+
shapeId: z65.string().min(1)
|
|
3476
|
+
});
|
|
3477
|
+
var PluginAIInspirationGetWorkflowForShapeResult = z65.object({
|
|
3478
|
+
workflow: PluginAIInspirationWorkflow.nullable(),
|
|
3479
|
+
node: PluginAIInspirationWorkflowNode.nullable()
|
|
3480
|
+
});
|
|
3481
|
+
var PluginAIInspirationRerunPlanResult = z65.discriminatedUnion(
|
|
3482
|
+
"status",
|
|
3483
|
+
[
|
|
3484
|
+
z65.object({
|
|
3485
|
+
status: z65.literal("ready"),
|
|
3486
|
+
workflowId: z65.string(),
|
|
3487
|
+
sourceNode: PluginAIInspirationWorkflowNode,
|
|
3488
|
+
edgeIds: z65.array(z65.string()),
|
|
3489
|
+
edges: z65.array(PluginAIInspirationWorkflowEdge),
|
|
3490
|
+
recipe: z65.lazy(() => PluginAIInspirationRecipe),
|
|
3491
|
+
needsEndFrame: z65.boolean(),
|
|
3492
|
+
defaultEndFrameShapeId: z65.string().nullable()
|
|
3493
|
+
}),
|
|
3494
|
+
z65.object({
|
|
3495
|
+
status: z65.literal("unavailable"),
|
|
3496
|
+
reason: z65.enum([
|
|
3497
|
+
"not-in-workflow",
|
|
3498
|
+
"source-only",
|
|
3499
|
+
"running",
|
|
3500
|
+
"missing-input"
|
|
3501
|
+
])
|
|
3502
|
+
})
|
|
3503
|
+
]
|
|
3504
|
+
);
|
|
3505
|
+
var PluginAIInspirationRerunSelectedBranchArgs = z65.object({
|
|
3506
|
+
shapeId: z65.string().min(1),
|
|
3507
|
+
endFrameShapeId: z65.string().optional(),
|
|
3508
|
+
runMode: PluginAIInspirationRunMode.optional()
|
|
3509
|
+
});
|
|
3510
|
+
var PluginAIInspirationRecipeSlot = z65.object({
|
|
3511
|
+
id: z65.string(),
|
|
3512
|
+
type: z65.enum(["source-image", "end-frame"]),
|
|
3513
|
+
label: z65.string(),
|
|
3514
|
+
required: z65.boolean()
|
|
3515
|
+
});
|
|
3516
|
+
var PluginAIInspirationRecipeStep = z65.object({
|
|
3517
|
+
id: z65.string(),
|
|
3518
|
+
operation: PluginAIInspirationWorkflowOperation,
|
|
3519
|
+
outputKind: z65.enum(["image", "video"])
|
|
3520
|
+
});
|
|
3521
|
+
var PluginAIInspirationRecipeDraft = z65.object({
|
|
3522
|
+
name: z65.string(),
|
|
3523
|
+
summary: z65.string(),
|
|
3524
|
+
slots: z65.array(PluginAIInspirationRecipeSlot),
|
|
3525
|
+
steps: z65.array(PluginAIInspirationRecipeStep).min(1).max(20),
|
|
3526
|
+
outputKind: z65.enum(["image", "video"]),
|
|
3527
|
+
thumbnailUrl: z65.string().optional()
|
|
3528
|
+
});
|
|
3529
|
+
var PluginAIInspirationRecipe = PluginAIInspirationRecipeDraft.extend({
|
|
3530
|
+
version: z65.literal(1),
|
|
3531
|
+
id: z65.string(),
|
|
3532
|
+
fingerprint: z65.string().optional(),
|
|
3533
|
+
createdAt: z65.number(),
|
|
3534
|
+
updatedAt: z65.number()
|
|
3535
|
+
});
|
|
3536
|
+
var PluginAIInspirationExtractionResult = z65.discriminatedUnion(
|
|
3537
|
+
"status",
|
|
3538
|
+
[
|
|
3539
|
+
z65.object({
|
|
3540
|
+
status: z65.literal("ready"),
|
|
3541
|
+
draft: PluginAIInspirationRecipeDraft
|
|
3542
|
+
}),
|
|
3543
|
+
z65.object({
|
|
3544
|
+
status: z65.literal("unavailable"),
|
|
3545
|
+
reason: z65.enum([
|
|
3546
|
+
"not-in-workflow",
|
|
3547
|
+
"source-only",
|
|
3548
|
+
"missing-workflow",
|
|
3549
|
+
"missing-node",
|
|
3550
|
+
"missing-input",
|
|
3551
|
+
"invalid-workflow"
|
|
3552
|
+
])
|
|
3553
|
+
})
|
|
3554
|
+
]
|
|
3555
|
+
);
|
|
3556
|
+
var PluginAIInspirationListRecipesResult = z65.object({
|
|
3557
|
+
recipes: z65.array(PluginAIInspirationRecipe)
|
|
3558
|
+
});
|
|
3559
|
+
var PluginAIInspirationSaveRecipeArgs = z65.object({
|
|
3560
|
+
draft: PluginAIInspirationRecipeDraft,
|
|
3561
|
+
name: z65.string().min(1)
|
|
3562
|
+
});
|
|
3563
|
+
var PluginAIInspirationSaveRecipeResult = z65.discriminatedUnion(
|
|
3564
|
+
"status",
|
|
3565
|
+
[
|
|
3566
|
+
z65.object({ status: z65.literal("saved"), recipe: PluginAIInspirationRecipe }),
|
|
3567
|
+
z65.object({
|
|
3568
|
+
status: z65.literal("duplicate"),
|
|
3569
|
+
recipe: PluginAIInspirationRecipe
|
|
3570
|
+
}),
|
|
3571
|
+
z65.object({ status: z65.literal("invalid-name"), recipe: z65.null() }),
|
|
3572
|
+
z65.object({ status: z65.literal("failed"), recipe: z65.null() })
|
|
3573
|
+
]
|
|
3574
|
+
);
|
|
3575
|
+
var PluginAIInspirationDeleteRecipeArgs = z65.object({
|
|
3576
|
+
recipeId: z65.string().min(1)
|
|
3577
|
+
});
|
|
3578
|
+
var PluginAIInspirationDeleteRecipeResult = z65.object({
|
|
3579
|
+
deleted: z65.boolean()
|
|
3580
|
+
});
|
|
3581
|
+
var PluginAIInspirationExtractRecipeFromShapeArgs = z65.object({
|
|
3582
|
+
shapeId: z65.string().min(1)
|
|
3583
|
+
});
|
|
3584
|
+
var PluginAIInspirationRunRecipeArgs = z65.object({
|
|
3585
|
+
recipeId: z65.string().optional(),
|
|
3586
|
+
recipe: PluginAIInspirationRecipe.optional(),
|
|
3587
|
+
slotShapeIds: z65.record(z65.string(), z65.string()),
|
|
3588
|
+
runMode: PluginAIInspirationRunMode.optional()
|
|
3307
3589
|
});
|
|
3308
3590
|
var PluginPresentationAIInspirationApi = class {
|
|
3309
3591
|
constructor() {
|
|
@@ -3611,20 +3893,55 @@ export {
|
|
|
3611
3893
|
PLUGIN_ERROR_CODES,
|
|
3612
3894
|
PUnitType,
|
|
3613
3895
|
PluginAIInspirationAppliedPreset,
|
|
3896
|
+
PluginAIInspirationCancelJobResult,
|
|
3614
3897
|
PluginAIInspirationDebugSummary,
|
|
3898
|
+
PluginAIInspirationDeleteRecipeArgs,
|
|
3899
|
+
PluginAIInspirationDeleteRecipeResult,
|
|
3900
|
+
PluginAIInspirationExtractRecipeFromShapeArgs,
|
|
3901
|
+
PluginAIInspirationExtractionResult,
|
|
3615
3902
|
PluginAIInspirationGenerateArgs,
|
|
3903
|
+
PluginAIInspirationGenerationInputSnapshot,
|
|
3904
|
+
PluginAIInspirationGetJobResult,
|
|
3905
|
+
PluginAIInspirationGetModelCapabilitiesArgs,
|
|
3906
|
+
PluginAIInspirationGetModelCapabilitiesResult,
|
|
3907
|
+
PluginAIInspirationGetPresetCatalogResult,
|
|
3908
|
+
PluginAIInspirationGetSelectionResult,
|
|
3909
|
+
PluginAIInspirationGetWorkflowForShapeArgs,
|
|
3910
|
+
PluginAIInspirationGetWorkflowForShapeResult,
|
|
3911
|
+
PluginAIInspirationJob,
|
|
3912
|
+
PluginAIInspirationJobArgs,
|
|
3913
|
+
PluginAIInspirationJobProgress,
|
|
3914
|
+
PluginAIInspirationJobStatus,
|
|
3915
|
+
PluginAIInspirationListJobsResult,
|
|
3616
3916
|
PluginAIInspirationListModelsResult,
|
|
3917
|
+
PluginAIInspirationListRecipesResult,
|
|
3617
3918
|
PluginAIInspirationListSourcesArgs,
|
|
3618
3919
|
PluginAIInspirationListSourcesResult,
|
|
3619
3920
|
PluginAIInspirationModel,
|
|
3921
|
+
PluginAIInspirationModelCapability,
|
|
3620
3922
|
PluginAIInspirationModelOutput,
|
|
3621
3923
|
PluginAIInspirationOutput,
|
|
3622
3924
|
PluginAIInspirationOutputKind,
|
|
3623
3925
|
PluginAIInspirationPoint,
|
|
3926
|
+
PluginAIInspirationPreset,
|
|
3927
|
+
PluginAIInspirationPresetCategory,
|
|
3928
|
+
PluginAIInspirationPresetReferenceImage,
|
|
3929
|
+
PluginAIInspirationPromptStrategy,
|
|
3930
|
+
PluginAIInspirationRecipe,
|
|
3931
|
+
PluginAIInspirationRecipeDraft,
|
|
3932
|
+
PluginAIInspirationRecipeSlot,
|
|
3933
|
+
PluginAIInspirationRecipeStep,
|
|
3624
3934
|
PluginAIInspirationRefineArgs,
|
|
3625
3935
|
PluginAIInspirationRegionHint,
|
|
3936
|
+
PluginAIInspirationRerunPlanResult,
|
|
3937
|
+
PluginAIInspirationRerunSelectedBranchArgs,
|
|
3626
3938
|
PluginAIInspirationRunMetadata,
|
|
3939
|
+
PluginAIInspirationRunMode,
|
|
3940
|
+
PluginAIInspirationRunRecipeArgs,
|
|
3627
3941
|
PluginAIInspirationRunResult,
|
|
3942
|
+
PluginAIInspirationRuntimeProvider,
|
|
3943
|
+
PluginAIInspirationSaveRecipeArgs,
|
|
3944
|
+
PluginAIInspirationSaveRecipeResult,
|
|
3628
3945
|
PluginAIInspirationShapeKind,
|
|
3629
3946
|
PluginAIInspirationShapeRef,
|
|
3630
3947
|
PluginAIInspirationSiteOptions,
|
|
@@ -3634,6 +3951,12 @@ export {
|
|
|
3634
3951
|
PluginAIInspirationVideoMode,
|
|
3635
3952
|
PluginAIInspirationVideoMotion,
|
|
3636
3953
|
PluginAIInspirationVideoOptions,
|
|
3954
|
+
PluginAIInspirationWorkflow,
|
|
3955
|
+
PluginAIInspirationWorkflowEdge,
|
|
3956
|
+
PluginAIInspirationWorkflowNode,
|
|
3957
|
+
PluginAIInspirationWorkflowOperation,
|
|
3958
|
+
PluginAIInspirationWorkflowRunState,
|
|
3959
|
+
PluginAIInspirationWorkflowVideoConfig,
|
|
3637
3960
|
PluginAdjacencyLevel,
|
|
3638
3961
|
PluginAlignEdge,
|
|
3639
3962
|
PluginAnalysisApi,
|