@codemation/core-nodes-ocr 0.2.4 → 0.2.5

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @codemation/core-nodes-ocr
2
2
 
3
+ ## 0.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`2fcb715`](https://github.com/MadeRelevant/codemation/commit/2fcb7153d9c732b2f846b8a8d1cc5626b4363fa6)]:
8
+ - @codemation/core@0.13.1
9
+
3
10
  ## 0.2.4
4
11
 
5
12
  ### Patch Changes
@@ -277,6 +277,15 @@ interface AppConfig {
277
277
  readonly repoRoot: string;
278
278
  readonly env: Readonly<NodeJS.ProcessEnv>;
279
279
  readonly workflowSources: ReadonlyArray<string>;
280
+ /**
281
+ * The discovery directories from `workflowDiscovery.directories` (or the `workflowsDir`
282
+ * shorthand). Stored here so the runtime can re-scan on demand in `serve` mode without
283
+ * needing the raw `CodemationConfig`.
284
+ *
285
+ * Absent or empty when no directory-based discovery is configured (i.e. workflows are
286
+ * provided only via the explicit `workflows` array).
287
+ */
288
+ readonly workflowDiscoveryDirectories?: ReadonlyArray<string>;
280
289
  readonly workflows: ReadonlyArray<WorkflowDefinition>;
281
290
  readonly containerRegistrations: ReadonlyArray<CodemationContainerRegistration<unknown>>;
282
291
  readonly credentialTypes: ReadonlyArray<AnyCredentialType>;
@@ -217,6 +217,15 @@ interface AppConfig {
217
217
  readonly repoRoot: string;
218
218
  readonly env: Readonly<NodeJS.ProcessEnv>;
219
219
  readonly workflowSources: ReadonlyArray<string>;
220
+ /**
221
+ * The discovery directories from `workflowDiscovery.directories` (or the `workflowsDir`
222
+ * shorthand). Stored here so the runtime can re-scan on demand in `serve` mode without
223
+ * needing the raw `CodemationConfig`.
224
+ *
225
+ * Absent or empty when no directory-based discovery is configured (i.e. workflows are
226
+ * provided only via the explicit `workflows` array).
227
+ */
228
+ readonly workflowDiscoveryDirectories?: ReadonlyArray<string>;
220
229
  readonly workflows: ReadonlyArray<WorkflowDefinition>;
221
230
  readonly containerRegistrations: ReadonlyArray<CodemationContainerRegistration<unknown>>;
222
231
  readonly credentialTypes: ReadonlyArray<AnyCredentialType>;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "packageName": "@codemation/core-nodes-ocr",
4
- "packageVersion": "0.2.4",
4
+ "packageVersion": "0.2.5",
5
5
  "description": "Azure AI Content Understanding (OCR) plugin for Codemation — prebuilt document, invoice, and image analyzers.",
6
6
  "kind": "nodes",
7
7
  "nodes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemation/core-nodes-ocr",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Azure AI Content Understanding (OCR) plugin for Codemation — prebuilt document, invoice, and image analyzers.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -44,7 +44,7 @@
44
44
  "@azure/ai-content-understanding": "^1.0.0",
45
45
  "@azure/core-auth": "^1.10.1",
46
46
  "zod": "^4.3.6",
47
- "@codemation/core": "0.13.0"
47
+ "@codemation/core": "0.13.1"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/node": "^25.3.5",