@eide/foir-cli 0.5.1 → 0.5.3
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/cli.js +336 -193
- package/dist/lib/config-helpers.d.ts +2 -1
- package/package.json +1 -1
|
@@ -199,7 +199,8 @@ interface IntegrationInput {
|
|
|
199
199
|
enabled?: boolean;
|
|
200
200
|
middleware: IntegrationMiddlewareInput;
|
|
201
201
|
credentials: IntegrationCredentialsInput;
|
|
202
|
-
sync
|
|
202
|
+
/** Source type -> sync mapping. Optional when field mapping is managed via the admin UI. */
|
|
203
|
+
sync?: Record<string, IntegrationSyncMappingInput>;
|
|
203
204
|
/** Opaque middleware-specific settings — not validated by the CLI. */
|
|
204
205
|
settings?: Record<string, unknown>;
|
|
205
206
|
metadata?: Record<string, unknown>;
|