@workglow/tasks 0.0.118 → 0.0.120

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/common.d.ts CHANGED
@@ -101,5 +101,5 @@ import { VectorNormalizeTask } from "./task/vector/VectorNormalizeTask";
101
101
  import { VectorScaleTask } from "./task/vector/VectorScaleTask";
102
102
  import { VectorSubtractTask } from "./task/vector/VectorSubtractTask";
103
103
  import { VectorSumTask } from "./task/vector/VectorSumTask";
104
- export declare let registerCommonTasks: () => (typeof ScalarAddTask | typeof ScalarDivideTask | typeof ScalarMultiplyTask | typeof ScalarSubtractTask | typeof ScalarSumTask | typeof VectorDivideTask | typeof VectorMultiplyTask | typeof VectorSubtractTask | typeof VectorSumTask | typeof DebugLogTask | typeof DelayTask | typeof FetchUrlTask | typeof InputTask | typeof JavaScriptTask | typeof JsonTask | typeof LambdaTask | typeof MergeTask | typeof SplitTask | typeof DateFormatTask | typeof JsonPathTask | typeof RegexTask | typeof TemplateTask | typeof McpListTask | typeof McpPromptGetTask | typeof McpResourceReadTask | typeof McpToolCallTask | typeof StringConcatTask | typeof StringIncludesTask | typeof StringJoinTask | typeof StringLengthTask | typeof StringLowerCaseTask | typeof StringReplaceTask | typeof StringSliceTask | typeof StringTemplateTask | typeof StringTrimTask | typeof StringUpperCaseTask | typeof ScalarAbsTask | typeof ScalarCeilTask | typeof ScalarFloorTask | typeof ScalarMaxTask | typeof ScalarMinTask | typeof ScalarRoundTask | typeof ScalarTruncTask | typeof VectorDistanceTask | typeof VectorDotProductTask | typeof VectorNormalizeTask | typeof VectorScaleTask)[];
104
+ export declare let registerCommonTasks: () => (typeof DebugLogTask | typeof DelayTask | typeof FetchUrlTask | typeof InputTask | typeof JavaScriptTask | typeof JsonTask | typeof LambdaTask | typeof MergeTask | typeof SplitTask | typeof ScalarAbsTask | typeof ScalarAddTask | typeof ScalarCeilTask | typeof ScalarDivideTask | typeof ScalarFloorTask | typeof ScalarMaxTask | typeof ScalarMinTask | typeof ScalarMultiplyTask | typeof ScalarRoundTask | typeof ScalarSubtractTask | typeof ScalarSumTask | typeof ScalarTruncTask | typeof VectorSumTask | typeof VectorDistanceTask | typeof VectorDivideTask | typeof VectorDotProductTask | typeof VectorMultiplyTask | typeof VectorNormalizeTask | typeof VectorScaleTask | typeof VectorSubtractTask | typeof McpToolCallTask | typeof McpResourceReadTask | typeof McpPromptGetTask | typeof McpListTask | typeof StringConcatTask | typeof StringIncludesTask | typeof StringJoinTask | typeof StringLengthTask | typeof StringLowerCaseTask | typeof StringReplaceTask | typeof StringSliceTask | typeof StringTemplateTask | typeof StringTrimTask | typeof StringUpperCaseTask | typeof JsonPathTask | typeof TemplateTask | typeof DateFormatTask | typeof RegexTask)[];
105
105
  //# sourceMappingURL=common.d.ts.map
@@ -162,9 +162,9 @@ export declare class FileLoaderTask extends Task<FileLoaderTaskInput, FileLoader
162
162
  export declare const fileLoader: (input: FileLoaderTaskInput, config?: JobQueueTaskConfig) => Promise<{
163
163
  text?: string | undefined;
164
164
  json?: unknown;
165
- image?: string | undefined;
166
165
  csv?: unknown[] | undefined;
167
166
  pdf?: string | undefined;
167
+ image?: string | undefined;
168
168
  frontmatter?: {
169
169
  [x: string]: unknown;
170
170
  } | undefined;
@@ -172,8 +172,8 @@ export declare const fileLoader: (input: FileLoaderTaskInput, config?: JobQueueT
172
172
  format?: string | undefined;
173
173
  title?: string | undefined;
174
174
  url?: string | undefined;
175
- mimeType?: string | undefined;
176
175
  size?: number | undefined;
176
+ mimeType?: string | undefined;
177
177
  };
178
178
  }>;
179
179
  declare module "@workglow/task-graph" {
@@ -19,9 +19,9 @@ export declare class FileLoaderTask extends BaseFileLoaderTask {
19
19
  export declare const fileLoader: (input: FileLoaderTaskInput, config?: JobQueueTaskConfig) => Promise<{
20
20
  text?: string | undefined;
21
21
  json?: unknown;
22
- image?: string | undefined;
23
22
  csv?: unknown[] | undefined;
24
23
  pdf?: string | undefined;
24
+ image?: string | undefined;
25
25
  frontmatter?: {
26
26
  [x: string]: unknown;
27
27
  } | undefined;
@@ -29,8 +29,8 @@ export declare const fileLoader: (input: FileLoaderTaskInput, config?: JobQueueT
29
29
  format?: string | undefined;
30
30
  title?: string | undefined;
31
31
  url?: string | undefined;
32
- mimeType?: string | undefined;
33
32
  size?: number | undefined;
33
+ mimeType?: string | undefined;
34
34
  };
35
35
  }>;
36
36
  declare module "@workglow/task-graph" {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@workglow/tasks",
3
3
  "type": "module",
4
- "version": "0.0.118",
4
+ "version": "0.0.120",
5
5
  "description": "Pre-built task implementations for Workglow, including common AI operations and utility functions.",
6
6
  "scripts": {
7
7
  "watch": "concurrently -c 'auto' 'bun:watch-*'",
@@ -37,10 +37,10 @@
37
37
  "access": "public"
38
38
  },
39
39
  "peerDependencies": {
40
- "@workglow/task-graph": "0.0.118",
41
- "@workglow/util": "0.0.118",
42
- "@workglow/job-queue": "0.0.118",
43
- "@workglow/storage": "0.0.118"
40
+ "@workglow/task-graph": "0.0.120",
41
+ "@workglow/util": "0.0.120",
42
+ "@workglow/job-queue": "0.0.120",
43
+ "@workglow/storage": "0.0.120"
44
44
  },
45
45
  "peerDependenciesMeta": {
46
46
  "@workglow/task-graph": {
@@ -58,10 +58,10 @@
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/papaparse": "^5.5.2",
61
- "@workglow/job-queue": "0.0.118",
62
- "@workglow/storage": "0.0.118",
63
- "@workglow/task-graph": "0.0.118",
64
- "@workglow/util": "0.0.118"
61
+ "@workglow/job-queue": "0.0.120",
62
+ "@workglow/storage": "0.0.120",
63
+ "@workglow/task-graph": "0.0.120",
64
+ "@workglow/util": "0.0.120"
65
65
  },
66
66
  "dependencies": {
67
67
  "papaparse": "^5.5.3"