@genfeedai/types 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-KXAKQO3U.js → chunk-74STGUJY.js} +2 -0
- package/dist/chunk-74STGUJY.js.map +1 -0
- package/dist/{chunk-WT2F5CAF.mjs → chunk-CVFAILC4.mjs} +2 -0
- package/dist/chunk-CVFAILC4.mjs.map +1 -0
- package/dist/chunk-DVR3GE4F.js +4 -0
- package/dist/chunk-DVR3GE4F.js.map +1 -0
- package/dist/chunk-G2BD5ZTF.mjs +3 -0
- package/dist/chunk-G2BD5ZTF.mjs.map +1 -0
- package/dist/{chunk-P4XY3T5T.js → chunk-MRTGK3CK.js} +601 -578
- package/dist/chunk-MRTGK3CK.js.map +1 -0
- package/dist/{chunk-QNWQE2LJ.mjs → chunk-ZMENGANG.mjs} +601 -578
- package/dist/chunk-ZMENGANG.mjs.map +1 -0
- package/dist/comfyui.d.mts +44 -44
- package/dist/comfyui.d.ts +44 -44
- package/dist/comfyui.js +3 -1
- package/dist/comfyui.js.map +1 -0
- package/dist/comfyui.mjs +3 -1
- package/dist/comfyui.mjs.map +1 -0
- package/dist/index.d.mts +341 -3
- package/dist/index.d.ts +341 -3
- package/dist/index.js +28 -26
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +11 -9
- package/dist/index.mjs.map +1 -0
- package/dist/nodes.d.mts +2 -2
- package/dist/nodes.d.ts +2 -2
- package/dist/nodes.js +15 -13
- package/dist/nodes.js.map +1 -0
- package/dist/nodes.mjs +3 -1
- package/dist/nodes.mjs.map +1 -0
- package/dist/replicate.js +2 -0
- package/dist/replicate.js.map +1 -0
- package/dist/replicate.mjs +2 -0
- package/dist/replicate.mjs.map +1 -0
- package/dist/{union-BVaWc1Cx.d.mts → union-D5EesBEB.d.mts} +142 -142
- package/dist/{union-BVaWc1Cx.d.ts → union-D5EesBEB.d.ts} +142 -142
- package/dist/{workflow-B_Q38s-U.d.ts → workflow-Cd_F9hZk.d.ts} +1 -1
- package/dist/{workflow-BbAp7VSK.d.mts → workflow-D9M1Yoiy.d.mts} +1 -1
- package/dist/workflow.d.mts +2 -2
- package/dist/workflow.d.ts +2 -2
- package/dist/workflow.js +4 -2
- package/dist/workflow.js.map +1 -0
- package/dist/workflow.mjs +3 -1
- package/dist/workflow.mjs.map +1 -0
- package/package.json +37 -37
- package/src/replicate/schemas.json +319 -319
- package/dist/chunk-7NJUD2WZ.mjs +0 -1
- package/dist/chunk-RNGYPX4W.js +0 -2
|
@@ -46,74 +46,6 @@ declare enum ProcessingNodeType {
|
|
|
46
46
|
WORKFLOW_REF = "workflowRef"
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
declare enum HandleTypeEnum {
|
|
50
|
-
IMAGE = "image",
|
|
51
|
-
TEXT = "text",
|
|
52
|
-
VIDEO = "video",
|
|
53
|
-
NUMBER = "number",
|
|
54
|
-
AUDIO = "audio"
|
|
55
|
-
}
|
|
56
|
-
type HandleType = `${HandleTypeEnum}`;
|
|
57
|
-
interface HandleDefinition {
|
|
58
|
-
id: string;
|
|
59
|
-
type: HandleType;
|
|
60
|
-
label: string;
|
|
61
|
-
multiple?: boolean;
|
|
62
|
-
required?: boolean;
|
|
63
|
-
/** True if handle was dynamically generated from model schema */
|
|
64
|
-
fromSchema?: boolean;
|
|
65
|
-
}
|
|
66
|
-
declare const CONNECTION_RULES: Record<HandleType, HandleType[]>;
|
|
67
|
-
|
|
68
|
-
declare enum ProviderTypeEnum {
|
|
69
|
-
REPLICATE = "replicate",
|
|
70
|
-
FAL = "fal",
|
|
71
|
-
HUGGINGFACE = "huggingface",
|
|
72
|
-
GENFEED_AI = "genfeed-ai"
|
|
73
|
-
}
|
|
74
|
-
type ProviderType = `${ProviderTypeEnum}`;
|
|
75
|
-
declare enum ModelCapabilityEnum {
|
|
76
|
-
TEXT_TO_IMAGE = "text-to-image",
|
|
77
|
-
IMAGE_TO_IMAGE = "image-to-image",
|
|
78
|
-
TEXT_TO_VIDEO = "text-to-video",
|
|
79
|
-
IMAGE_TO_VIDEO = "image-to-video",
|
|
80
|
-
TEXT_GENERATION = "text-generation"
|
|
81
|
-
}
|
|
82
|
-
type ModelCapability = `${ModelCapabilityEnum}`;
|
|
83
|
-
declare enum ModelUseCaseEnum {
|
|
84
|
-
STYLE_TRANSFER = "style-transfer",
|
|
85
|
-
CHARACTER_CONSISTENT = "character-consistent",
|
|
86
|
-
IMAGE_VARIATION = "image-variation",
|
|
87
|
-
INPAINTING = "inpainting",
|
|
88
|
-
UPSCALE = "upscale",
|
|
89
|
-
GENERAL = "general"
|
|
90
|
-
}
|
|
91
|
-
type ModelUseCase = `${ModelUseCaseEnum}`;
|
|
92
|
-
interface ProviderModel {
|
|
93
|
-
id: string;
|
|
94
|
-
displayName: string;
|
|
95
|
-
provider: ProviderType;
|
|
96
|
-
capabilities: ModelCapability[];
|
|
97
|
-
description?: string;
|
|
98
|
-
thumbnail?: string;
|
|
99
|
-
pricing?: string;
|
|
100
|
-
inputSchema?: Record<string, unknown>;
|
|
101
|
-
/** Component schemas containing enum definitions (aspect_ratio, duration, etc.) */
|
|
102
|
-
componentSchemas?: Record<string, unknown>;
|
|
103
|
-
/** Use cases this model supports (style transfer, upscale, etc.) */
|
|
104
|
-
useCases?: ModelUseCase[];
|
|
105
|
-
}
|
|
106
|
-
interface SelectedModel {
|
|
107
|
-
/** Alias for modelId - used by hooks that expect id */
|
|
108
|
-
id?: string;
|
|
109
|
-
provider: ProviderType;
|
|
110
|
-
modelId: string;
|
|
111
|
-
displayName: string;
|
|
112
|
-
inputSchema?: Record<string, unknown>;
|
|
113
|
-
/** Component schemas containing enum definitions (aspect_ratio, duration, etc.) */
|
|
114
|
-
componentSchemas?: Record<string, unknown>;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
49
|
declare enum NodeTypeEnum {
|
|
118
50
|
IMAGE_INPUT = "imageInput",
|
|
119
51
|
AUDIO_INPUT = "audioInput",
|
|
@@ -174,47 +106,53 @@ interface BaseNodeData extends Record<string, unknown> {
|
|
|
174
106
|
color?: string;
|
|
175
107
|
}
|
|
176
108
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
height: number;
|
|
183
|
-
} | null;
|
|
184
|
-
source: 'upload' | 'url';
|
|
185
|
-
url?: string;
|
|
186
|
-
}
|
|
187
|
-
interface PromptNodeData extends BaseNodeData {
|
|
188
|
-
prompt: string;
|
|
189
|
-
variables: Record<string, string>;
|
|
109
|
+
declare enum ProviderTypeEnum {
|
|
110
|
+
REPLICATE = "replicate",
|
|
111
|
+
FAL = "fal",
|
|
112
|
+
HUGGINGFACE = "huggingface",
|
|
113
|
+
GENFEED_AI = "genfeed-ai"
|
|
190
114
|
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
115
|
+
type ProviderType = `${ProviderTypeEnum}`;
|
|
116
|
+
declare enum ModelCapabilityEnum {
|
|
117
|
+
TEXT_TO_IMAGE = "text-to-image",
|
|
118
|
+
IMAGE_TO_IMAGE = "image-to-image",
|
|
119
|
+
TEXT_TO_VIDEO = "text-to-video",
|
|
120
|
+
IMAGE_TO_VIDEO = "image-to-video",
|
|
121
|
+
TEXT_GENERATION = "text-generation"
|
|
197
122
|
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
source: 'upload' | 'url';
|
|
207
|
-
url?: string;
|
|
123
|
+
type ModelCapability = `${ModelCapabilityEnum}`;
|
|
124
|
+
declare enum ModelUseCaseEnum {
|
|
125
|
+
STYLE_TRANSFER = "style-transfer",
|
|
126
|
+
CHARACTER_CONSISTENT = "character-consistent",
|
|
127
|
+
IMAGE_VARIATION = "image-variation",
|
|
128
|
+
INPAINTING = "inpainting",
|
|
129
|
+
UPSCALE = "upscale",
|
|
130
|
+
GENERAL = "general"
|
|
208
131
|
}
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
132
|
+
type ModelUseCase = `${ModelUseCaseEnum}`;
|
|
133
|
+
interface ProviderModel {
|
|
134
|
+
id: string;
|
|
135
|
+
displayName: string;
|
|
136
|
+
provider: ProviderType;
|
|
137
|
+
capabilities: ModelCapability[];
|
|
138
|
+
description?: string;
|
|
139
|
+
thumbnail?: string;
|
|
140
|
+
pricing?: string;
|
|
141
|
+
inputSchema?: Record<string, unknown>;
|
|
142
|
+
/** Component schemas containing enum definitions (aspect_ratio, duration, etc.) */
|
|
143
|
+
componentSchemas?: Record<string, unknown>;
|
|
144
|
+
/** Use cases this model supports (style transfer, upscale, etc.) */
|
|
145
|
+
useCases?: ModelUseCase[];
|
|
213
146
|
}
|
|
214
|
-
interface
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
147
|
+
interface SelectedModel {
|
|
148
|
+
/** Alias for modelId - used by hooks that expect id */
|
|
149
|
+
id?: string;
|
|
150
|
+
provider: ProviderType;
|
|
151
|
+
modelId: string;
|
|
152
|
+
displayName: string;
|
|
153
|
+
inputSchema?: Record<string, unknown>;
|
|
154
|
+
/** Component schemas containing enum definitions (aspect_ratio, duration, etc.) */
|
|
155
|
+
componentSchemas?: Record<string, unknown>;
|
|
218
156
|
}
|
|
219
157
|
|
|
220
158
|
type ImageModel = 'nano-banana' | 'nano-banana-pro';
|
|
@@ -351,6 +289,104 @@ interface MotionControlNodeData extends BaseNodeData {
|
|
|
351
289
|
jobId: string | null;
|
|
352
290
|
}
|
|
353
291
|
|
|
292
|
+
declare enum HandleTypeEnum {
|
|
293
|
+
IMAGE = "image",
|
|
294
|
+
TEXT = "text",
|
|
295
|
+
VIDEO = "video",
|
|
296
|
+
NUMBER = "number",
|
|
297
|
+
AUDIO = "audio"
|
|
298
|
+
}
|
|
299
|
+
type HandleType = `${HandleTypeEnum}`;
|
|
300
|
+
interface HandleDefinition {
|
|
301
|
+
id: string;
|
|
302
|
+
type: HandleType;
|
|
303
|
+
label: string;
|
|
304
|
+
multiple?: boolean;
|
|
305
|
+
required?: boolean;
|
|
306
|
+
/** True if handle was dynamically generated from model schema */
|
|
307
|
+
fromSchema?: boolean;
|
|
308
|
+
}
|
|
309
|
+
declare const CONNECTION_RULES: Record<HandleType, HandleType[]>;
|
|
310
|
+
|
|
311
|
+
interface WorkflowInputNodeData extends BaseNodeData {
|
|
312
|
+
inputName: string;
|
|
313
|
+
inputType: HandleType;
|
|
314
|
+
required: boolean;
|
|
315
|
+
description?: string;
|
|
316
|
+
}
|
|
317
|
+
interface WorkflowOutputNodeData extends BaseNodeData {
|
|
318
|
+
outputName: string;
|
|
319
|
+
outputType: HandleType;
|
|
320
|
+
description?: string;
|
|
321
|
+
inputValue: string | null;
|
|
322
|
+
}
|
|
323
|
+
interface WorkflowInterfaceInput {
|
|
324
|
+
nodeId: string;
|
|
325
|
+
name: string;
|
|
326
|
+
type: HandleType;
|
|
327
|
+
required: boolean;
|
|
328
|
+
}
|
|
329
|
+
interface WorkflowInterfaceOutput {
|
|
330
|
+
nodeId: string;
|
|
331
|
+
name: string;
|
|
332
|
+
type: HandleType;
|
|
333
|
+
}
|
|
334
|
+
interface WorkflowInterface {
|
|
335
|
+
inputs: WorkflowInterfaceInput[];
|
|
336
|
+
outputs: WorkflowInterfaceOutput[];
|
|
337
|
+
}
|
|
338
|
+
interface WorkflowRefNodeData extends BaseNodeData {
|
|
339
|
+
referencedWorkflowId: string | null;
|
|
340
|
+
referencedWorkflowName: string | null;
|
|
341
|
+
cachedInterface: WorkflowInterface | null;
|
|
342
|
+
inputMappings: Record<string, string | null>;
|
|
343
|
+
outputMappings: Record<string, string | null>;
|
|
344
|
+
childExecutionId: string | null;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
interface ImageInputNodeData extends BaseNodeData {
|
|
348
|
+
image: string | null;
|
|
349
|
+
filename: string | null;
|
|
350
|
+
dimensions: {
|
|
351
|
+
width: number;
|
|
352
|
+
height: number;
|
|
353
|
+
} | null;
|
|
354
|
+
source: 'upload' | 'url';
|
|
355
|
+
url?: string;
|
|
356
|
+
}
|
|
357
|
+
interface PromptNodeData extends BaseNodeData {
|
|
358
|
+
prompt: string;
|
|
359
|
+
variables: Record<string, string>;
|
|
360
|
+
}
|
|
361
|
+
interface AudioInputNodeData extends BaseNodeData {
|
|
362
|
+
audio: string | null;
|
|
363
|
+
filename: string | null;
|
|
364
|
+
duration: number | null;
|
|
365
|
+
source: 'upload' | 'url';
|
|
366
|
+
url?: string;
|
|
367
|
+
}
|
|
368
|
+
interface VideoInputNodeData extends BaseNodeData {
|
|
369
|
+
video: string | null;
|
|
370
|
+
filename: string | null;
|
|
371
|
+
duration: number | null;
|
|
372
|
+
dimensions: {
|
|
373
|
+
width: number;
|
|
374
|
+
height: number;
|
|
375
|
+
} | null;
|
|
376
|
+
source: 'upload' | 'url';
|
|
377
|
+
url?: string;
|
|
378
|
+
}
|
|
379
|
+
interface AvailableVariable {
|
|
380
|
+
name: string;
|
|
381
|
+
value: string;
|
|
382
|
+
nodeId: string;
|
|
383
|
+
}
|
|
384
|
+
interface PromptConstructorNodeData extends BaseNodeData {
|
|
385
|
+
template: string;
|
|
386
|
+
outputText: string | null;
|
|
387
|
+
unresolvedVars: string[];
|
|
388
|
+
}
|
|
389
|
+
|
|
354
390
|
type EasingPreset = 'linear' | 'easeIn' | 'easeOut' | 'easeInOut' | 'easeInQuad' | 'easeOutQuad' | 'easeInOutQuad' | 'easeInCubic' | 'easeOutCubic' | 'easeInOutCubic' | 'easeInExpo' | 'easeOutExpo' | 'easeInOutExpo';
|
|
355
391
|
type CubicBezier = [number, number, number, number];
|
|
356
392
|
interface AnimationNodeData extends BaseNodeData {
|
|
@@ -490,42 +526,6 @@ interface DownloadNodeData extends BaseNodeData {
|
|
|
490
526
|
/** @deprecated Use DownloadNodeData instead */
|
|
491
527
|
type OutputNodeData = DownloadNodeData;
|
|
492
528
|
|
|
493
|
-
interface WorkflowInputNodeData extends BaseNodeData {
|
|
494
|
-
inputName: string;
|
|
495
|
-
inputType: HandleType;
|
|
496
|
-
required: boolean;
|
|
497
|
-
description?: string;
|
|
498
|
-
}
|
|
499
|
-
interface WorkflowOutputNodeData extends BaseNodeData {
|
|
500
|
-
outputName: string;
|
|
501
|
-
outputType: HandleType;
|
|
502
|
-
description?: string;
|
|
503
|
-
inputValue: string | null;
|
|
504
|
-
}
|
|
505
|
-
interface WorkflowInterfaceInput {
|
|
506
|
-
nodeId: string;
|
|
507
|
-
name: string;
|
|
508
|
-
type: HandleType;
|
|
509
|
-
required: boolean;
|
|
510
|
-
}
|
|
511
|
-
interface WorkflowInterfaceOutput {
|
|
512
|
-
nodeId: string;
|
|
513
|
-
name: string;
|
|
514
|
-
type: HandleType;
|
|
515
|
-
}
|
|
516
|
-
interface WorkflowInterface {
|
|
517
|
-
inputs: WorkflowInterfaceInput[];
|
|
518
|
-
outputs: WorkflowInterfaceOutput[];
|
|
519
|
-
}
|
|
520
|
-
interface WorkflowRefNodeData extends BaseNodeData {
|
|
521
|
-
referencedWorkflowId: string | null;
|
|
522
|
-
referencedWorkflowName: string | null;
|
|
523
|
-
cachedInterface: WorkflowInterface | null;
|
|
524
|
-
inputMappings: Record<string, string | null>;
|
|
525
|
-
outputMappings: Record<string, string | null>;
|
|
526
|
-
childExecutionId: string | null;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
529
|
type WorkflowNodeData = ImageInputNodeData | AudioInputNodeData | VideoInputNodeData | PromptNodeData | PromptConstructorNodeData | ImageGenNodeData | VideoGenNodeData | LLMNodeData | LipSyncNodeData | VoiceChangeNodeData | TextToSpeechNodeData | TranscribeNodeData | MotionControlNodeData | AnimationNodeData | VideoStitchNodeData | ResizeNodeData | VideoTrimNodeData | VideoFrameExtractNodeData | ReframeNodeData | UpscaleNodeData | ImageGridSplitNodeData | AnnotationNodeData | SubtitleNodeData | OutputGalleryNodeData | ImageCompareNodeData | OutputNodeData | WorkflowInputNodeData | WorkflowOutputNodeData | WorkflowRefNodeData;
|
|
530
530
|
type WorkflowNode = Node<WorkflowNodeData, NodeType>;
|
|
531
531
|
/**
|
|
@@ -539,4 +539,4 @@ interface WorkflowEdgeData {
|
|
|
539
539
|
}
|
|
540
540
|
type WorkflowEdge = Edge<WorkflowEdgeData>;
|
|
541
541
|
|
|
542
|
-
export { type
|
|
542
|
+
export { type OutputQuality as $, type AnimationNodeData as A, type BaseNodeData as B, CONNECTION_RULES as C, type DownloadNodeData as D, type EasingPreset as E, type FrameSelectionMode as F, type GridOutputFormat as G, type HandleDefinition as H, type ImageCompareNodeData as I, type MotionControlMode as J, KlingQuality as K, type LLMNodeData as L, type ModelCapability as M, type NodeType as N, type MotionControlNodeData as O, type NodeCategory as P, NodeCategoryEnum as Q, ReframeNodeType as R, type NodeStatus as S, NodeStatusEnum as T, UpscaleNodeType as U, NodeTypeEnum as V, type WorkflowNode as W, type OutputFormat as X, type OutputGalleryNodeData as Y, type OutputInputType as Z, type OutputNodeData as _, type WorkflowEdge as a, ProcessingNodeType as a0, type PromptConstructorNodeData as a1, type PromptNodeData as a2, type ProviderModel as a3, type ProviderType as a4, ProviderTypeEnum as a5, type ReframeInputType as a6, type ReframeNodeData as a7, type ResizeNodeData as a8, type Resolution as a9, type VideoTrimNodeData as aA, type VoiceChangeNodeData as aB, type WorkflowEdgeData as aC, type WorkflowInputNodeData as aD, type WorkflowInterface as aE, type WorkflowInterfaceInput as aF, type WorkflowInterfaceOutput as aG, type WorkflowNodeData as aH, type WorkflowOutputNodeData as aI, type WorkflowRefNodeData as aJ, WorkflowTemplateCategory as aK, type SelectedModel as aa, type SubtitleNodeData as ab, type SubtitlePosition as ac, type SubtitleStyle as ad, type TTSProvider as ae, type TTSVoice as af, type TextModel as ag, type TextToSpeechNodeData as ah, type TopazEnhanceModel as ai, type TopazUpscaleFactor as aj, type TopazVideoFPS as ak, type TopazVideoResolution as al, type TrajectoryPoint as am, type TranscribeLanguage as an, type TranscribeNodeData as ao, type TransitionType as ap, type UpscaleInputType as aq, type UpscaleModel as ar, type UpscaleNodeData as as, type VideoDuration as at, type VideoFrameExtractNodeData as au, type VideoGenNodeData as av, type VideoInputNodeData as aw, type VideoModel as ax, type VideoResolution as ay, type VideoStitchNodeData as az, type AnnotationNodeData as b, type AnnotationShapeData as c, type AspectRatio as d, type AudioCodec as e, type AudioInputNodeData as f, type AvailableVariable as g, type CameraMovement as h, type CharacterOrientation as i, type CubicBezier as j, type GridPosition as k, type HandleType as l, HandleTypeEnum as m, type ImageGenNodeData as n, type ImageGridSplitNodeData as o, type ImageInputNodeData as p, type ImageModel as q, type KlingQualityMode as r, type LipSyncMode as s, type LipSyncModel as t, type LipSyncNodeData as u, type LumaAspectRatio as v, type LumaReframeModel as w, ModelCapabilityEnum as x, type ModelUseCase as y, ModelUseCaseEnum as z };
|
package/dist/workflow.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { E as EdgeStyle, a as EdgeStyleEnum, b as ExecutionResult, T as TemplateEdge, c as TemplateNode, V as ValidationError, d as ValidationResult, W as WorkflowFile, e as WorkflowTemplate } from './workflow-
|
|
2
|
-
import './union-
|
|
1
|
+
export { E as EdgeStyle, a as EdgeStyleEnum, b as ExecutionResult, T as TemplateEdge, c as TemplateNode, V as ValidationError, d as ValidationResult, W as WorkflowFile, e as WorkflowTemplate } from './workflow-D9M1Yoiy.mjs';
|
|
2
|
+
import './union-D5EesBEB.mjs';
|
|
3
3
|
import '@xyflow/react';
|
package/dist/workflow.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { E as EdgeStyle, a as EdgeStyleEnum, b as ExecutionResult, T as TemplateEdge, c as TemplateNode, V as ValidationError, d as ValidationResult, W as WorkflowFile, e as WorkflowTemplate } from './workflow-
|
|
2
|
-
import './union-
|
|
1
|
+
export { E as EdgeStyle, a as EdgeStyleEnum, b as ExecutionResult, T as TemplateEdge, c as TemplateNode, V as ValidationError, d as ValidationResult, W as WorkflowFile, e as WorkflowTemplate } from './workflow-Cd_F9hZk.js';
|
|
2
|
+
import './union-D5EesBEB.js';
|
|
3
3
|
import '@xyflow/react';
|
package/dist/workflow.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk74STGUJY_js = require('./chunk-74STGUJY.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "EdgeStyleEnum", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunk74STGUJY_js.EdgeStyleEnum; }
|
|
10
10
|
});
|
|
11
|
+
//# sourceMappingURL=workflow.js.map
|
|
12
|
+
//# sourceMappingURL=workflow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"workflow.js"}
|
package/dist/workflow.mjs
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"workflow.mjs"}
|
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@genfeedai/types",
|
|
3
|
-
"version": "0.2.2",
|
|
4
|
-
"sideEffects": false,
|
|
5
|
-
"license": "AGPL-3.0",
|
|
6
2
|
"description": "Type definitions for Genfeed workflow engine",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
},
|
|
12
|
-
"publishConfig": {
|
|
13
|
-
"access": "public",
|
|
14
|
-
"registry": "https://registry.npmjs.org/"
|
|
3
|
+
"devDependencies": {
|
|
4
|
+
"@xyflow/react": "12.10.2",
|
|
5
|
+
"tsup": "8.5.1",
|
|
6
|
+
"typescript": "5.9.3"
|
|
15
7
|
},
|
|
16
|
-
"main": "./dist/index.js",
|
|
17
|
-
"module": "./dist/index.mjs",
|
|
18
|
-
"types": "./dist/index.d.ts",
|
|
19
8
|
"exports": {
|
|
20
9
|
".": {
|
|
21
|
-
"types": "./dist/index.d.ts",
|
|
22
10
|
"import": "./dist/index.mjs",
|
|
23
|
-
"require": "./dist/index.js"
|
|
24
|
-
|
|
25
|
-
"./nodes": {
|
|
26
|
-
"types": "./dist/nodes.d.ts",
|
|
27
|
-
"import": "./dist/nodes.mjs",
|
|
28
|
-
"require": "./dist/nodes.js"
|
|
29
|
-
},
|
|
30
|
-
"./workflow": {
|
|
31
|
-
"types": "./dist/workflow.d.ts",
|
|
32
|
-
"import": "./dist/workflow.mjs",
|
|
33
|
-
"require": "./dist/workflow.js"
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
34
13
|
},
|
|
35
14
|
"./comfyui": {
|
|
36
|
-
"types": "./dist/comfyui.d.ts",
|
|
37
15
|
"import": "./dist/comfyui.mjs",
|
|
38
|
-
"require": "./dist/comfyui.js"
|
|
16
|
+
"require": "./dist/comfyui.js",
|
|
17
|
+
"types": "./dist/comfyui.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./nodes": {
|
|
20
|
+
"import": "./dist/nodes.mjs",
|
|
21
|
+
"require": "./dist/nodes.js",
|
|
22
|
+
"types": "./dist/nodes.d.ts"
|
|
39
23
|
},
|
|
40
24
|
"./replicate": {
|
|
41
|
-
"types": "./dist/replicate.d.ts",
|
|
42
25
|
"import": "./dist/replicate.mjs",
|
|
43
|
-
"require": "./dist/replicate.js"
|
|
26
|
+
"require": "./dist/replicate.js",
|
|
27
|
+
"types": "./dist/replicate.d.ts"
|
|
44
28
|
},
|
|
45
|
-
"./replicate/schemas.json": "./src/replicate/schemas.json"
|
|
29
|
+
"./replicate/schemas.json": "./src/replicate/schemas.json",
|
|
30
|
+
"./workflow": {
|
|
31
|
+
"import": "./dist/workflow.mjs",
|
|
32
|
+
"require": "./dist/workflow.js",
|
|
33
|
+
"types": "./dist/workflow.d.ts"
|
|
34
|
+
}
|
|
46
35
|
},
|
|
47
36
|
"files": [
|
|
48
37
|
"dist",
|
|
49
38
|
"src/replicate/schemas.json"
|
|
50
39
|
],
|
|
40
|
+
"license": "AGPL-3.0",
|
|
41
|
+
"main": "./dist/index.js",
|
|
42
|
+
"module": "./dist/index.mjs",
|
|
43
|
+
"name": "@genfeedai/types",
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"directory": "types",
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/genfeedai/packages.git"
|
|
52
|
+
},
|
|
51
53
|
"scripts": {
|
|
52
54
|
"build": "tsup",
|
|
53
55
|
"dev": "tsup --watch",
|
|
54
56
|
"prepublishOnly": "bun run build"
|
|
55
57
|
},
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"typescript": "5.9.3"
|
|
60
|
-
}
|
|
58
|
+
"sideEffects": false,
|
|
59
|
+
"types": "./dist/index.d.ts",
|
|
60
|
+
"version": "0.3.0"
|
|
61
61
|
}
|