chore: api-reports

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-08-05 16:33:57 +02:00
parent 210d066af4
commit cfbffadf63
+3 -2
View File
@@ -662,7 +662,7 @@ export type CreateExtensionBlueprintOptions<
},
> = {
kind: string;
namespace?: string;
namespace?: string | ((params: TParams) => string);
attachTo: {
id: string;
input: string;
@@ -670,8 +670,9 @@ export type CreateExtensionBlueprintOptions<
disabled?: boolean;
inputs?: TInputs;
output: Array<UOutput>;
name?: string | ((params: TParams) => string);
config?: {
schema: TConfigSchema;
schema: TConfigSchema | ((params: TParams) => TConfigSchema);
};
factory(
params: TParams,