@friggframework/core 2.0.0-next.11 → 2.0.0-next.110
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/CLAUDE.md +702 -0
- package/README.md +999 -50
- package/admin-scripts/index.js +52 -0
- package/admin-scripts/repositories/admin-script-execution-repository-documentdb.js +21 -0
- package/admin-scripts/repositories/admin-script-execution-repository-factory.js +51 -0
- package/admin-scripts/repositories/admin-script-execution-repository-interface.js +171 -0
- package/admin-scripts/repositories/admin-script-execution-repository-mongo.js +238 -0
- package/admin-scripts/repositories/admin-script-execution-repository-postgres.js +278 -0
- package/admin-scripts/repositories/script-schedule-repository-documentdb.js +21 -0
- package/admin-scripts/repositories/script-schedule-repository-factory.js +51 -0
- package/admin-scripts/repositories/script-schedule-repository-interface.js +108 -0
- package/admin-scripts/repositories/script-schedule-repository-mongo.js +179 -0
- package/admin-scripts/repositories/script-schedule-repository-postgres.js +210 -0
- package/application/commands/README.md +451 -0
- package/application/commands/admin-script-commands.js +359 -0
- package/application/commands/credential-commands.js +262 -0
- package/application/commands/entity-commands.js +336 -0
- package/application/commands/integration-commands.js +356 -0
- package/application/commands/integration-mapping-commands.js +25 -0
- package/application/commands/process-commands.js +135 -0
- package/application/commands/report-commands.js +188 -0
- package/application/commands/scheduler-commands.js +263 -0
- package/application/commands/usage-commands.js +56 -0
- package/application/commands/user-commands.js +312 -0
- package/application/index.js +83 -0
- package/artifacts/repositories/artifact-repository-factory.js +19 -0
- package/artifacts/repositories/artifact-repository-interface.js +27 -0
- package/artifacts/repositories/artifact-repository-local.js +42 -0
- package/artifacts/repositories/artifact-repository-s3.js +61 -0
- package/assertions/index.js +0 -3
- package/core/CLAUDE.md +700 -0
- package/core/Worker.js +60 -24
- package/core/create-handler.js +189 -5
- package/core/parameters-to-env.js +257 -0
- package/core/ssm-preload.mjs +34 -0
- package/credential/repositories/credential-active-type.js +32 -0
- package/credential/repositories/credential-repository-documentdb.js +355 -0
- package/credential/repositories/credential-repository-factory.js +54 -0
- package/credential/repositories/credential-repository-interface.js +113 -0
- package/credential/repositories/credential-repository-mongo.js +294 -0
- package/credential/repositories/credential-repository-postgres.js +312 -0
- package/credential/repositories/credential-repository.js +300 -0
- package/credential/use-cases/get-credential-for-user.js +25 -0
- package/credential/use-cases/update-authentication-status.js +15 -0
- package/database/MONGODB_TRANSACTION_FIX.md +198 -0
- package/database/adapters/lambda-invoker.js +97 -0
- package/database/config.js +154 -0
- package/database/documentdb-encryption-service.js +330 -0
- package/database/documentdb-utils.js +192 -0
- package/database/encryption/README.md +839 -0
- package/database/encryption/documentdb-encryption-service.md +3575 -0
- package/database/encryption/encryption-schema-registry.js +401 -0
- package/database/encryption/field-encryption-service.js +254 -0
- package/database/encryption/logger.js +79 -0
- package/database/encryption/prisma-encryption-extension.js +230 -0
- package/database/index.js +21 -21
- package/database/prisma.js +182 -0
- package/database/repositories/health-check-repository-documentdb.js +138 -0
- package/database/repositories/health-check-repository-factory.js +48 -0
- package/database/repositories/health-check-repository-interface.js +82 -0
- package/database/repositories/health-check-repository-mongodb.js +89 -0
- package/database/repositories/health-check-repository-postgres.js +82 -0
- package/database/repositories/migration-status-repository-s3.js +137 -0
- package/database/use-cases/check-database-health-use-case.js +29 -0
- package/database/use-cases/check-database-state-use-case.js +81 -0
- package/database/use-cases/check-encryption-health-use-case.js +83 -0
- package/database/use-cases/get-database-state-via-worker-use-case.js +61 -0
- package/database/use-cases/get-migration-status-use-case.js +93 -0
- package/database/use-cases/resolve-migration-via-worker-use-case.js +49 -0
- package/database/use-cases/run-database-migration-use-case.js +139 -0
- package/database/use-cases/test-encryption-use-case.js +253 -0
- package/database/use-cases/trigger-database-migration-use-case.js +157 -0
- package/database/utils/mongodb-collection-utils.js +94 -0
- package/database/utils/mongodb-schema-init.js +108 -0
- package/database/utils/prisma-runner.js +491 -0
- package/database/utils/prisma-schema-parser.js +182 -0
- package/docs/PROCESS_MANAGEMENT_QUEUE_SPEC.md +517 -0
- package/encrypt/Cryptor.js +34 -168
- package/encrypt/index.js +1 -2
- package/errors/client-safe-error.js +26 -0
- package/errors/fetch-error.js +15 -7
- package/errors/index.js +2 -0
- package/generated/prisma-mongodb/client.d.ts +1 -0
- package/generated/prisma-mongodb/client.js +5 -0
- package/generated/prisma-mongodb/default.d.ts +1 -0
- package/generated/prisma-mongodb/default.js +5 -0
- package/generated/prisma-mongodb/edge.d.ts +1 -0
- package/generated/prisma-mongodb/edge.js +386 -0
- package/generated/prisma-mongodb/index-browser.js +368 -0
- package/generated/prisma-mongodb/index.d.ts +27065 -0
- package/generated/prisma-mongodb/index.js +411 -0
- package/generated/prisma-mongodb/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/generated/prisma-mongodb/libquery_engine-rhel-openssl-3.0.x.so.node +0 -0
- package/generated/prisma-mongodb/package.json +183 -0
- package/generated/prisma-mongodb/runtime/edge-esm.js +35 -0
- package/generated/prisma-mongodb/runtime/edge.js +35 -0
- package/generated/prisma-mongodb/runtime/index-browser.d.ts +370 -0
- package/generated/prisma-mongodb/runtime/index-browser.js +17 -0
- package/generated/prisma-mongodb/runtime/library.d.ts +3982 -0
- package/generated/prisma-mongodb/runtime/library.js +147 -0
- package/generated/prisma-mongodb/runtime/react-native.js +84 -0
- package/generated/prisma-mongodb/runtime/wasm-compiler-edge.js +85 -0
- package/generated/prisma-mongodb/runtime/wasm-engine-edge.js +38 -0
- package/generated/prisma-mongodb/schema.prisma +455 -0
- package/generated/prisma-mongodb/wasm-edge-light-loader.mjs +5 -0
- package/generated/prisma-mongodb/wasm-worker-loader.mjs +5 -0
- package/generated/prisma-mongodb/wasm.d.ts +1 -0
- package/generated/prisma-mongodb/wasm.js +393 -0
- package/generated/prisma-postgresql/client.d.ts +1 -0
- package/generated/prisma-postgresql/client.js +5 -0
- package/generated/prisma-postgresql/default.d.ts +1 -0
- package/generated/prisma-postgresql/default.js +5 -0
- package/generated/prisma-postgresql/edge.d.ts +1 -0
- package/generated/prisma-postgresql/edge.js +407 -0
- package/generated/prisma-postgresql/index-browser.js +389 -0
- package/generated/prisma-postgresql/index.d.ts +29904 -0
- package/generated/prisma-postgresql/index.js +432 -0
- package/generated/prisma-postgresql/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/generated/prisma-postgresql/libquery_engine-rhel-openssl-3.0.x.so.node +0 -0
- package/generated/prisma-postgresql/package.json +183 -0
- package/generated/prisma-postgresql/query_engine_bg.js +2 -0
- package/generated/prisma-postgresql/query_engine_bg.wasm +0 -0
- package/generated/prisma-postgresql/runtime/edge-esm.js +35 -0
- package/generated/prisma-postgresql/runtime/edge.js +35 -0
- package/generated/prisma-postgresql/runtime/index-browser.d.ts +370 -0
- package/generated/prisma-postgresql/runtime/index-browser.js +17 -0
- package/generated/prisma-postgresql/runtime/library.d.ts +3982 -0
- package/generated/prisma-postgresql/runtime/library.js +147 -0
- package/generated/prisma-postgresql/runtime/react-native.js +84 -0
- package/generated/prisma-postgresql/runtime/wasm-compiler-edge.js +85 -0
- package/generated/prisma-postgresql/runtime/wasm-engine-edge.js +38 -0
- package/generated/prisma-postgresql/schema.prisma +436 -0
- package/generated/prisma-postgresql/wasm-edge-light-loader.mjs +5 -0
- package/generated/prisma-postgresql/wasm-worker-loader.mjs +5 -0
- package/generated/prisma-postgresql/wasm.d.ts +1 -0
- package/generated/prisma-postgresql/wasm.js +414 -0
- package/handlers/WEBHOOKS.md +653 -0
- package/handlers/app-definition-loader.js +67 -0
- package/handlers/app-handler-helpers.js +3 -3
- package/handlers/backend-utils.js +271 -42
- package/handlers/database-migration-handler.js +227 -0
- package/handlers/integration-event-dispatcher.js +68 -0
- package/handlers/middleware/admin-auth.js +73 -0
- package/handlers/routers/HEALTHCHECK.md +342 -0
- package/handlers/routers/auth.js +4 -15
- package/handlers/routers/db-migration.handler.js +29 -0
- package/handlers/routers/db-migration.js +329 -0
- package/handlers/routers/health.js +518 -0
- package/handlers/routers/integration-defined-routers.js +85 -10
- package/handlers/routers/integration-webhook-routers.js +80 -0
- package/handlers/routers/user.js +27 -5
- package/handlers/routers/websocket.js +5 -3
- package/handlers/use-cases/check-external-apis-health-use-case.js +81 -0
- package/handlers/use-cases/check-integrations-health-use-case.js +44 -0
- package/handlers/workers/db-migration.js +427 -0
- package/handlers/workers/dlq-processor.js +63 -0
- package/handlers/workers/integration-defined-workers.js +13 -7
- package/index.js +102 -46
- package/infrastructure/scheduler/eventbridge-scheduler-adapter.js +184 -0
- package/infrastructure/scheduler/index.js +33 -0
- package/infrastructure/scheduler/mock-scheduler-adapter.js +143 -0
- package/infrastructure/scheduler/scheduler-service-factory.js +73 -0
- package/infrastructure/scheduler/scheduler-service-interface.js +47 -0
- package/integrations/EXTENSIONS.md +240 -0
- package/integrations/WEBHOOK-QUICKSTART.md +151 -0
- package/integrations/extension.js +254 -0
- package/integrations/index.js +20 -10
- package/integrations/integration-base.js +730 -74
- package/integrations/integration-router.js +398 -180
- package/integrations/options.js +1 -1
- package/integrations/repositories/config-patch-shared.js +43 -0
- package/integrations/repositories/integration-mapping-repository-documentdb.js +303 -0
- package/integrations/repositories/integration-mapping-repository-factory.js +57 -0
- package/integrations/repositories/integration-mapping-repository-interface.js +120 -0
- package/integrations/repositories/integration-mapping-repository-mongo.js +183 -0
- package/integrations/repositories/integration-mapping-repository-postgres.js +255 -0
- package/integrations/repositories/integration-mapping-repository.js +156 -0
- package/integrations/repositories/integration-repository-documentdb.js +322 -0
- package/integrations/repositories/integration-repository-factory.js +51 -0
- package/integrations/repositories/integration-repository-interface.js +189 -0
- package/integrations/repositories/integration-repository-mongo.js +450 -0
- package/integrations/repositories/integration-repository-postgres.js +492 -0
- package/integrations/repositories/process-repository-documentdb.js +311 -0
- package/integrations/repositories/process-repository-factory.js +53 -0
- package/integrations/repositories/process-repository-interface.js +136 -0
- package/integrations/repositories/process-repository-mongo.js +262 -0
- package/integrations/repositories/process-repository-postgres.js +380 -0
- package/integrations/repositories/process-update-ops-shared.js +112 -0
- package/integrations/repositories/report-id.js +13 -0
- package/integrations/tests/doubles/config-capturing-integration.js +81 -0
- package/integrations/tests/doubles/dummy-integration-class.js +113 -0
- package/integrations/tests/doubles/test-integration-repository.js +146 -0
- package/integrations/use-cases/create-integration.js +215 -0
- package/integrations/use-cases/create-process.js +130 -0
- package/integrations/use-cases/delete-integration-for-user.js +119 -0
- package/integrations/use-cases/find-integration-by-entity-external-id.js +74 -0
- package/integrations/use-cases/find-integration-context-by-external-entity-id.js +76 -0
- package/integrations/use-cases/get-integration-for-user.js +78 -0
- package/integrations/use-cases/get-integration-instance-by-definition.js +67 -0
- package/integrations/use-cases/get-integration-instance.js +83 -0
- package/integrations/use-cases/get-integrations-for-user.js +88 -0
- package/integrations/use-cases/get-possible-integrations.js +27 -0
- package/integrations/use-cases/get-process.js +89 -0
- package/integrations/use-cases/index.js +19 -0
- package/integrations/use-cases/list-integrations-by-entity-external-id.js +46 -0
- package/integrations/use-cases/load-integration-context.js +71 -0
- package/integrations/use-cases/patch-integration-config.js +39 -0
- package/integrations/use-cases/process-errors.js +28 -0
- package/integrations/use-cases/update-integration-config.js +32 -0
- package/integrations/use-cases/update-integration-messages.js +44 -0
- package/integrations/use-cases/update-integration-status.js +32 -0
- package/integrations/use-cases/update-integration.js +92 -0
- package/integrations/use-cases/update-process-metrics.js +222 -0
- package/integrations/use-cases/update-process-state.js +163 -0
- package/integrations/utils/map-integration-dto.js +37 -0
- package/jest-global-setup-noop.js +3 -0
- package/jest-global-teardown-noop.js +3 -0
- package/logs/logger.js +0 -4
- package/{module-plugin → modules}/index.js +0 -10
- package/modules/module-factory.js +56 -0
- package/modules/module.js +307 -0
- package/modules/repositories/module-repository-documentdb.js +350 -0
- package/modules/repositories/module-repository-factory.js +40 -0
- package/modules/repositories/module-repository-interface.js +145 -0
- package/modules/repositories/module-repository-mongo.js +436 -0
- package/modules/repositories/module-repository-postgres.js +481 -0
- package/modules/repositories/module-repository.js +369 -0
- package/modules/requester/api-key.js +52 -0
- package/modules/requester/oauth-2.js +555 -0
- package/modules/requester/requester.js +542 -0
- package/{module-plugin → modules}/test/mock-api/api.js +8 -3
- package/{module-plugin → modules}/test/mock-api/definition.js +14 -10
- package/modules/tests/doubles/test-module-factory.js +16 -0
- package/modules/tests/doubles/test-module-repository.js +39 -0
- package/modules/use-cases/get-entities-for-user.js +32 -0
- package/modules/use-cases/get-entity-options-by-id.js +71 -0
- package/modules/use-cases/get-entity-options-by-type.js +34 -0
- package/modules/use-cases/get-module-instance-from-type.js +34 -0
- package/modules/use-cases/get-module.js +74 -0
- package/modules/use-cases/process-authorization-callback.js +243 -0
- package/modules/use-cases/refresh-entity-options.js +72 -0
- package/modules/use-cases/test-module-auth.js +72 -0
- package/modules/utils/map-module-dto.js +18 -0
- package/package.json +92 -50
- package/prisma-mongodb/schema.prisma +455 -0
- package/prisma-postgresql/migrations/20250930193005_init/migration.sql +315 -0
- package/prisma-postgresql/migrations/20251006135218_init/migration.sql +9 -0
- package/prisma-postgresql/migrations/20251010000000_remove_unused_entity_reference_map/migration.sql +3 -0
- package/prisma-postgresql/migrations/20251112195422_update_user_unique_constraints/migration.sql +25 -0
- package/prisma-postgresql/migrations/20260422120000_add_entity_data_column/migration.sql +10 -0
- package/prisma-postgresql/migrations/20260422120001_create_process_table/migration.sql +48 -0
- package/prisma-postgresql/migrations/20260625000000_add_user_organization_id_index/migration.sql +2 -0
- package/prisma-postgresql/migrations/20260703000000_add_integration_status_in_creation_in_deletion/migration.sql +11 -0
- package/prisma-postgresql/migrations/20260703000001_integration_status_default_in_creation/migration.sql +8 -0
- package/prisma-postgresql/migrations/20260705000000_create_usage_counter/migration.sql +26 -0
- package/prisma-postgresql/migrations/20260706000000_add_admin_script_execution_and_schedule/migration.sql +61 -0
- package/prisma-postgresql/migrations/migration_lock.toml +3 -0
- package/prisma-postgresql/schema.prisma +436 -0
- package/queues/queuer-util.js +103 -21
- package/reporting/README.md +154 -0
- package/reporting/builtin-reports.js +6 -0
- package/reporting/index.js +13 -0
- package/reporting/report-base.js +49 -0
- package/reporting/reports/integrations-report.js +221 -0
- package/syncs/manager.js +468 -443
- package/syncs/repositories/sync-repository-documentdb.js +240 -0
- package/syncs/repositories/sync-repository-factory.js +43 -0
- package/syncs/repositories/sync-repository-interface.js +109 -0
- package/syncs/repositories/sync-repository-mongo.js +239 -0
- package/syncs/repositories/sync-repository-postgres.js +319 -0
- package/syncs/sync.js +0 -1
- package/telemetry/README.md +331 -0
- package/telemetry/bind-telemetry-context.js +73 -0
- package/telemetry/canonical-counters.js +52 -0
- package/telemetry/exporters.js +85 -0
- package/telemetry/index.js +26 -0
- package/telemetry/instrument-handler.js +87 -0
- package/telemetry/no-op-telemetry.js +67 -0
- package/telemetry/north-star.js +103 -0
- package/telemetry/otel-telemetry.js +213 -0
- package/telemetry/plugin-subscribers.js +77 -0
- package/telemetry/telemetry-config.js +120 -0
- package/telemetry/telemetry-context.js +40 -0
- package/telemetry/telemetry-event-bus.js +58 -0
- package/telemetry/telemetry-runtime.js +147 -0
- package/telemetry/telemetry-service.js +51 -0
- package/telemetry/usage-rollup-subscriber.js +116 -0
- package/token/repositories/token-repository-documentdb.js +137 -0
- package/token/repositories/token-repository-factory.js +40 -0
- package/token/repositories/token-repository-interface.js +131 -0
- package/token/repositories/token-repository-mongo.js +219 -0
- package/token/repositories/token-repository-postgres.js +264 -0
- package/token/repositories/token-repository.js +219 -0
- package/types/associations/index.d.ts +0 -17
- package/types/core/index.d.ts +12 -4
- package/types/database/index.d.ts +10 -2
- package/types/encrypt/index.d.ts +5 -3
- package/types/integrations/index.d.ts +3 -8
- package/types/module-plugin/index.d.ts +20 -69
- package/types/syncs/index.d.ts +0 -17
- package/usage/README.md +54 -0
- package/usage/index.js +17 -0
- package/usage/repositories/usage-repository-documentdb.js +194 -0
- package/usage/repositories/usage-repository-factory.js +25 -0
- package/usage/repositories/usage-repository-interface.js +37 -0
- package/usage/repositories/usage-repository-prisma.js +146 -0
- package/usage/tracked-metrics.js +38 -0
- package/usage/usage-windows.js +24 -0
- package/user/repositories/user-repository-documentdb.js +458 -0
- package/user/repositories/user-repository-factory.js +52 -0
- package/user/repositories/user-repository-interface.js +214 -0
- package/user/repositories/user-repository-mongo.js +323 -0
- package/user/repositories/user-repository-postgres.js +377 -0
- package/user/tests/doubles/test-user-repository.js +72 -0
- package/user/use-cases/authenticate-user.js +127 -0
- package/user/use-cases/authenticate-with-shared-secret.js +48 -0
- package/user/use-cases/create-individual-user.js +61 -0
- package/user/use-cases/create-organization-user.js +47 -0
- package/user/use-cases/create-token-for-user-id.js +30 -0
- package/user/use-cases/get-user-from-adopter-jwt.js +149 -0
- package/user/use-cases/get-user-from-bearer-token.js +77 -0
- package/user/use-cases/get-user-from-x-frigg-headers.js +132 -0
- package/user/use-cases/login-user.js +122 -0
- package/user/user.js +125 -0
- package/utils/backend-path.js +38 -0
- package/utils/index.js +6 -0
- package/websocket/repositories/websocket-connection-repository-documentdb.js +119 -0
- package/websocket/repositories/websocket-connection-repository-factory.js +44 -0
- package/websocket/repositories/websocket-connection-repository-interface.js +106 -0
- package/websocket/repositories/websocket-connection-repository-mongo.js +156 -0
- package/websocket/repositories/websocket-connection-repository-postgres.js +196 -0
- package/websocket/repositories/websocket-connection-repository.js +161 -0
- package/assertions/is-equal.js +0 -17
- package/associations/model.js +0 -54
- package/database/models/IndividualUser.js +0 -76
- package/database/models/OrganizationUser.js +0 -29
- package/database/models/State.js +0 -9
- package/database/models/Token.js +0 -70
- package/database/models/UserModel.js +0 -7
- package/database/models/WebsocketConnection.js +0 -49
- package/database/mongo.js +0 -45
- package/database/mongoose.js +0 -5
- package/encrypt/Cryptor.test.js +0 -32
- package/encrypt/encrypt.js +0 -132
- package/encrypt/encrypt.test.js +0 -1069
- package/encrypt/test-encrypt.js +0 -107
- package/errors/base-error.test.js +0 -32
- package/errors/fetch-error.test.js +0 -79
- package/errors/halt-error.test.js +0 -11
- package/errors/validation-errors.test.js +0 -120
- package/handlers/routers/middleware/loadUser.js +0 -15
- package/handlers/routers/middleware/requireLoggedInUser.js +0 -12
- package/integrations/create-frigg-backend.js +0 -31
- package/integrations/integration-factory.js +0 -251
- package/integrations/integration-mapping.js +0 -43
- package/integrations/integration-model.js +0 -46
- package/integrations/integration-user.js +0 -144
- package/integrations/test/integration-base.test.js +0 -144
- package/lambda/TimeoutCatcher.test.js +0 -68
- package/logs/logger.test.js +0 -76
- package/module-plugin/auther.js +0 -393
- package/module-plugin/credential.js +0 -22
- package/module-plugin/entity-manager.js +0 -70
- package/module-plugin/entity.js +0 -46
- package/module-plugin/manager.js +0 -169
- package/module-plugin/module-factory.js +0 -61
- package/module-plugin/requester/api-key.js +0 -36
- package/module-plugin/requester/oauth-2.js +0 -219
- package/module-plugin/requester/requester.js +0 -165
- package/module-plugin/requester/requester.test.js +0 -28
- package/module-plugin/test/auther.test.js +0 -97
- package/syncs/model.js +0 -62
- /package/{module-plugin → modules}/ModuleConstants.js +0 -0
- /package/{module-plugin → modules}/requester/basic.js +0 -0
- /package/{module-plugin → modules}/test/mock-api/mocks/hubspot.js +0 -0
package/integrations/options.js
CHANGED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared validation for IntegrationRepository.patchIntegrationConfig().
|
|
3
|
+
*
|
|
4
|
+
* A patch is an atomic shallow merge into Integration.config: every key in
|
|
5
|
+
* the patch is written, every other existing key is left untouched. This
|
|
6
|
+
* contract is enforced here, before any adapter emits a query, so a bug fix
|
|
7
|
+
* (or a tighter rule) fixes all three backends in one place.
|
|
8
|
+
*
|
|
9
|
+
* Keys may not contain '.' or start with '$' — both are reserved by the
|
|
10
|
+
* MongoDB/DocumentDB update-command syntax the mongo and documentdb adapters
|
|
11
|
+
* use to address `config.<key>` paths. A value of `null` is allowed and sets
|
|
12
|
+
* the key to null — the only way to clear a config field over the PATCH HTTP
|
|
13
|
+
* endpoint (it sets the value, it does not remove the key). `undefined` is
|
|
14
|
+
* rejected: it can't arrive over JSON and signals a programming error, not an
|
|
15
|
+
* intent. Removing a key entirely still requires a full replace via updateConfig.
|
|
16
|
+
*/
|
|
17
|
+
function validateConfigPatch(patch) {
|
|
18
|
+
if (!patch || typeof patch !== 'object' || Array.isArray(patch)) {
|
|
19
|
+
throw new Error('patchIntegrationConfig: patch must be a non-null object');
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const keys = Object.keys(patch);
|
|
23
|
+
if (keys.length === 0) {
|
|
24
|
+
throw new Error(
|
|
25
|
+
'patchIntegrationConfig: patch must contain at least one key'
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
for (const key of keys) {
|
|
30
|
+
if (key.includes('.') || key.startsWith('$')) {
|
|
31
|
+
throw new Error(
|
|
32
|
+
`patchIntegrationConfig: patch key '${key}' cannot contain '.' or start with '$'`
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
if (patch[key] === undefined) {
|
|
36
|
+
throw new Error(
|
|
37
|
+
`patchIntegrationConfig: patch['${key}'] cannot be undefined`
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
module.exports = { validateConfigPatch };
|
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
const { prisma } = require('../../database/prisma');
|
|
2
|
+
const {
|
|
3
|
+
toObjectId,
|
|
4
|
+
fromObjectId,
|
|
5
|
+
findMany,
|
|
6
|
+
findOne,
|
|
7
|
+
insertOne,
|
|
8
|
+
updateOne,
|
|
9
|
+
deleteOne,
|
|
10
|
+
deleteMany,
|
|
11
|
+
aggregateDrained,
|
|
12
|
+
} = require('../../database/documentdb-utils');
|
|
13
|
+
const {
|
|
14
|
+
IntegrationMappingRepositoryInterface,
|
|
15
|
+
} = require('./integration-mapping-repository-interface');
|
|
16
|
+
const {
|
|
17
|
+
DocumentDBEncryptionService,
|
|
18
|
+
} = require('../../database/documentdb-encryption-service');
|
|
19
|
+
|
|
20
|
+
class IntegrationMappingRepositoryDocumentDB extends IntegrationMappingRepositoryInterface {
|
|
21
|
+
constructor() {
|
|
22
|
+
super();
|
|
23
|
+
this.prisma = prisma;
|
|
24
|
+
this.encryptionService = new DocumentDBEncryptionService();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* integrationId is stored as a string in DocumentDB, so ids are matched as
|
|
29
|
+
* strings (an ObjectId $in would never match). Drains the grouped cursor so
|
|
30
|
+
* a deployment-wide count is not truncated at the first batch.
|
|
31
|
+
*/
|
|
32
|
+
async countByIntegrationIds(ids = []) {
|
|
33
|
+
const counts = new Map();
|
|
34
|
+
if (!ids || ids.length === 0) return counts;
|
|
35
|
+
|
|
36
|
+
const stringIds = ids.map(String);
|
|
37
|
+
const rows = await aggregateDrained(this.prisma, 'IntegrationMapping', [
|
|
38
|
+
{ $match: { integrationId: { $in: stringIds } } },
|
|
39
|
+
{ $group: { _id: '$integrationId', count: { $sum: 1 } } },
|
|
40
|
+
]);
|
|
41
|
+
|
|
42
|
+
for (const row of rows) {
|
|
43
|
+
counts.set(String(row?._id), row?.count ?? 0);
|
|
44
|
+
}
|
|
45
|
+
return counts;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
async findMappingBy(integrationId, sourceId) {
|
|
49
|
+
const filter = this._compositeFilter(integrationId, sourceId);
|
|
50
|
+
const doc = await findOne(this.prisma, 'IntegrationMapping', filter);
|
|
51
|
+
if (!doc) return null;
|
|
52
|
+
|
|
53
|
+
const decryptedMapping = await this.encryptionService.decryptFields(
|
|
54
|
+
'IntegrationMapping',
|
|
55
|
+
doc
|
|
56
|
+
);
|
|
57
|
+
return this._mapMapping(decryptedMapping);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
async upsertMapping(integrationId, sourceId, mapping) {
|
|
61
|
+
const filter = this._compositeFilter(integrationId, sourceId);
|
|
62
|
+
const existing = await findOne(
|
|
63
|
+
this.prisma,
|
|
64
|
+
'IntegrationMapping',
|
|
65
|
+
filter
|
|
66
|
+
);
|
|
67
|
+
const now = new Date();
|
|
68
|
+
|
|
69
|
+
if (existing) {
|
|
70
|
+
const decryptedExisting =
|
|
71
|
+
await this.encryptionService.decryptFields(
|
|
72
|
+
'IntegrationMapping',
|
|
73
|
+
existing
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
const updateDocument = {
|
|
77
|
+
mapping,
|
|
78
|
+
updatedAt: now,
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const encryptedUpdate = await this.encryptionService.encryptFields(
|
|
82
|
+
'IntegrationMapping',
|
|
83
|
+
{ mapping: updateDocument.mapping }
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
await updateOne(
|
|
87
|
+
this.prisma,
|
|
88
|
+
'IntegrationMapping',
|
|
89
|
+
{ _id: existing._id },
|
|
90
|
+
{
|
|
91
|
+
$set: {
|
|
92
|
+
mapping: encryptedUpdate.mapping,
|
|
93
|
+
updatedAt: updateDocument.updatedAt,
|
|
94
|
+
},
|
|
95
|
+
}
|
|
96
|
+
);
|
|
97
|
+
|
|
98
|
+
const updated = await findOne(this.prisma, 'IntegrationMapping', {
|
|
99
|
+
_id: existing._id,
|
|
100
|
+
});
|
|
101
|
+
if (!updated) {
|
|
102
|
+
console.error(
|
|
103
|
+
'[IntegrationMappingRepositoryDocumentDB] Mapping not found after update',
|
|
104
|
+
{
|
|
105
|
+
mappingId: fromObjectId(existing._id),
|
|
106
|
+
integrationId,
|
|
107
|
+
sourceId,
|
|
108
|
+
}
|
|
109
|
+
);
|
|
110
|
+
throw new Error(
|
|
111
|
+
'Failed to update mapping: Document not found after update. ' +
|
|
112
|
+
'This indicates a database consistency issue.'
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
const decryptedMapping = await this.encryptionService.decryptFields(
|
|
116
|
+
'IntegrationMapping',
|
|
117
|
+
updated
|
|
118
|
+
);
|
|
119
|
+
return this._mapMapping(decryptedMapping);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
const plainDocument = {
|
|
123
|
+
integrationId: integrationId,
|
|
124
|
+
sourceId:
|
|
125
|
+
sourceId === null || sourceId === undefined
|
|
126
|
+
? null
|
|
127
|
+
: String(sourceId),
|
|
128
|
+
mapping,
|
|
129
|
+
createdAt: now,
|
|
130
|
+
updatedAt: now,
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
const encryptedDocument = await this.encryptionService.encryptFields(
|
|
134
|
+
'IntegrationMapping',
|
|
135
|
+
plainDocument
|
|
136
|
+
);
|
|
137
|
+
|
|
138
|
+
const insertedId = await insertOne(
|
|
139
|
+
this.prisma,
|
|
140
|
+
'IntegrationMapping',
|
|
141
|
+
encryptedDocument
|
|
142
|
+
);
|
|
143
|
+
|
|
144
|
+
const created = await findOne(this.prisma, 'IntegrationMapping', {
|
|
145
|
+
_id: insertedId,
|
|
146
|
+
});
|
|
147
|
+
if (!created) {
|
|
148
|
+
console.error(
|
|
149
|
+
'[IntegrationMappingRepositoryDocumentDB] Mapping not found after insert',
|
|
150
|
+
{
|
|
151
|
+
insertedId: fromObjectId(insertedId),
|
|
152
|
+
integrationId,
|
|
153
|
+
sourceId,
|
|
154
|
+
}
|
|
155
|
+
);
|
|
156
|
+
throw new Error(
|
|
157
|
+
'Failed to create mapping: Document not found after insert. ' +
|
|
158
|
+
'This indicates a database consistency issue.'
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
const decryptedMapping = await this.encryptionService.decryptFields(
|
|
162
|
+
'IntegrationMapping',
|
|
163
|
+
created
|
|
164
|
+
);
|
|
165
|
+
return this._mapMapping(decryptedMapping);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
async findMappingsByIntegration(integrationId) {
|
|
169
|
+
const filter = {};
|
|
170
|
+
if (integrationId) filter.integrationId = integrationId;
|
|
171
|
+
const docs = await findMany(this.prisma, 'IntegrationMapping', filter);
|
|
172
|
+
|
|
173
|
+
const decryptedDocs = await Promise.all(
|
|
174
|
+
docs.map((doc) =>
|
|
175
|
+
this.encryptionService.decryptFields('IntegrationMapping', doc)
|
|
176
|
+
)
|
|
177
|
+
);
|
|
178
|
+
|
|
179
|
+
return decryptedDocs.map((doc) => this._mapMapping(doc));
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
async deleteMapping(integrationId, sourceId) {
|
|
183
|
+
const filter = this._compositeFilter(integrationId, sourceId);
|
|
184
|
+
const result = await deleteOne(
|
|
185
|
+
this.prisma,
|
|
186
|
+
'IntegrationMapping',
|
|
187
|
+
filter
|
|
188
|
+
);
|
|
189
|
+
const deleted = result?.n ?? 0;
|
|
190
|
+
return { acknowledged: true, deletedCount: deleted };
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
async deleteMappingsByIntegration(integrationId) {
|
|
194
|
+
if (!integrationId) {
|
|
195
|
+
return { acknowledged: true, deletedCount: 0 };
|
|
196
|
+
}
|
|
197
|
+
const result = await deleteMany(this.prisma, 'IntegrationMapping', {
|
|
198
|
+
integrationId: integrationId,
|
|
199
|
+
});
|
|
200
|
+
const deleted = result?.n ?? 0;
|
|
201
|
+
return { acknowledged: true, deletedCount: deleted };
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
async findMappingById(id) {
|
|
205
|
+
const objectId = toObjectId(id);
|
|
206
|
+
if (!objectId) return null;
|
|
207
|
+
const doc = await findOne(this.prisma, 'IntegrationMapping', {
|
|
208
|
+
_id: objectId,
|
|
209
|
+
});
|
|
210
|
+
if (!doc) return null;
|
|
211
|
+
|
|
212
|
+
const decryptedMapping = await this.encryptionService.decryptFields(
|
|
213
|
+
'IntegrationMapping',
|
|
214
|
+
doc
|
|
215
|
+
);
|
|
216
|
+
return this._mapMapping(decryptedMapping);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
async updateMapping(id, updates) {
|
|
220
|
+
const objectId = toObjectId(id);
|
|
221
|
+
if (!objectId) return null;
|
|
222
|
+
|
|
223
|
+
const existing = await findOne(this.prisma, 'IntegrationMapping', {
|
|
224
|
+
_id: objectId,
|
|
225
|
+
});
|
|
226
|
+
if (!existing) return null;
|
|
227
|
+
|
|
228
|
+
const decryptedExisting = await this.encryptionService.decryptFields(
|
|
229
|
+
'IntegrationMapping',
|
|
230
|
+
existing
|
|
231
|
+
);
|
|
232
|
+
|
|
233
|
+
const mergedMapping =
|
|
234
|
+
updates.mapping !== undefined
|
|
235
|
+
? updates.mapping
|
|
236
|
+
: decryptedExisting.mapping;
|
|
237
|
+
|
|
238
|
+
const updateDocument = {
|
|
239
|
+
...updates,
|
|
240
|
+
updatedAt: new Date(),
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
if (mergedMapping !== undefined) {
|
|
244
|
+
const encryptedUpdate = await this.encryptionService.encryptFields(
|
|
245
|
+
'IntegrationMapping',
|
|
246
|
+
{ mapping: mergedMapping }
|
|
247
|
+
);
|
|
248
|
+
updateDocument.mapping = encryptedUpdate.mapping;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
await updateOne(
|
|
252
|
+
this.prisma,
|
|
253
|
+
'IntegrationMapping',
|
|
254
|
+
{ _id: objectId },
|
|
255
|
+
{
|
|
256
|
+
$set: updateDocument,
|
|
257
|
+
}
|
|
258
|
+
);
|
|
259
|
+
|
|
260
|
+
const updated = await findOne(this.prisma, 'IntegrationMapping', {
|
|
261
|
+
_id: objectId,
|
|
262
|
+
});
|
|
263
|
+
if (!updated) {
|
|
264
|
+
console.error(
|
|
265
|
+
'[IntegrationMappingRepositoryDocumentDB] Mapping not found after update',
|
|
266
|
+
{
|
|
267
|
+
mappingId: fromObjectId(objectId),
|
|
268
|
+
}
|
|
269
|
+
);
|
|
270
|
+
throw new Error(
|
|
271
|
+
'Failed to update mapping: Document not found after update. ' +
|
|
272
|
+
'This indicates a database consistency issue.'
|
|
273
|
+
);
|
|
274
|
+
}
|
|
275
|
+
const decryptedMapping = await this.encryptionService.decryptFields(
|
|
276
|
+
'IntegrationMapping',
|
|
277
|
+
updated
|
|
278
|
+
);
|
|
279
|
+
return this._mapMapping(decryptedMapping);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
_compositeFilter(integrationId, sourceId) {
|
|
283
|
+
const filter = {};
|
|
284
|
+
if (integrationId) filter.integrationId = integrationId;
|
|
285
|
+
if (sourceId !== undefined) {
|
|
286
|
+
filter.sourceId = sourceId === null ? null : String(sourceId);
|
|
287
|
+
}
|
|
288
|
+
return filter;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
_mapMapping(doc) {
|
|
292
|
+
return {
|
|
293
|
+
id: fromObjectId(doc?._id),
|
|
294
|
+
integrationId: doc?.integrationId ?? null,
|
|
295
|
+
sourceId: doc?.sourceId ?? null,
|
|
296
|
+
mapping: doc?.mapping ?? null,
|
|
297
|
+
createdAt: doc?.createdAt,
|
|
298
|
+
updatedAt: doc?.updatedAt,
|
|
299
|
+
};
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
module.exports = { IntegrationMappingRepositoryDocumentDB };
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
const {
|
|
2
|
+
IntegrationMappingRepositoryMongo,
|
|
3
|
+
} = require('./integration-mapping-repository-mongo');
|
|
4
|
+
const {
|
|
5
|
+
IntegrationMappingRepositoryPostgres,
|
|
6
|
+
} = require('./integration-mapping-repository-postgres');
|
|
7
|
+
const {
|
|
8
|
+
IntegrationMappingRepositoryDocumentDB,
|
|
9
|
+
} = require('./integration-mapping-repository-documentdb');
|
|
10
|
+
const config = require('../../database/config');
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Integration Mapping Repository Factory
|
|
14
|
+
* Creates the appropriate repository adapter based on database type
|
|
15
|
+
*
|
|
16
|
+
* Database-specific implementations:
|
|
17
|
+
* - MongoDB: Uses String IDs (ObjectId), no conversion needed
|
|
18
|
+
* - PostgreSQL: Uses Int IDs, converts String ↔ Int
|
|
19
|
+
*
|
|
20
|
+
* All repository methods return String IDs regardless of database type,
|
|
21
|
+
* ensuring application layer consistency.
|
|
22
|
+
*
|
|
23
|
+
* Usage:
|
|
24
|
+
* ```javascript
|
|
25
|
+
* const repository = createIntegrationMappingRepository();
|
|
26
|
+
* const mapping = await repository.findMappingBy(integrationId, sourceId);
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* @returns {IntegrationMappingRepositoryInterface} Configured repository adapter
|
|
30
|
+
*/
|
|
31
|
+
function createIntegrationMappingRepository() {
|
|
32
|
+
const dbType = config.DB_TYPE;
|
|
33
|
+
|
|
34
|
+
switch (dbType) {
|
|
35
|
+
case 'mongodb':
|
|
36
|
+
return new IntegrationMappingRepositoryMongo();
|
|
37
|
+
|
|
38
|
+
case 'postgresql':
|
|
39
|
+
return new IntegrationMappingRepositoryPostgres();
|
|
40
|
+
|
|
41
|
+
case 'documentdb':
|
|
42
|
+
return new IntegrationMappingRepositoryDocumentDB();
|
|
43
|
+
|
|
44
|
+
default:
|
|
45
|
+
throw new Error(
|
|
46
|
+
`Unsupported database type: ${dbType}. Supported values: 'mongodb', 'documentdb', 'postgresql'`
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
module.exports = {
|
|
52
|
+
createIntegrationMappingRepository,
|
|
53
|
+
// Export adapters for direct testing
|
|
54
|
+
IntegrationMappingRepositoryMongo,
|
|
55
|
+
IntegrationMappingRepositoryPostgres,
|
|
56
|
+
IntegrationMappingRepositoryDocumentDB,
|
|
57
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Integration Mapping Repository Interface
|
|
3
|
+
* Abstract base class defining the contract for integration mapping persistence adapters
|
|
4
|
+
*
|
|
5
|
+
* This follows the Port in Hexagonal Architecture:
|
|
6
|
+
* - Domain layer depends on this abstraction
|
|
7
|
+
* - Concrete adapters implement this interface
|
|
8
|
+
* - Use cases receive repositories via dependency injection
|
|
9
|
+
*
|
|
10
|
+
* Note: Currently, IntegrationMapping model has identical structure across MongoDB and PostgreSQL,
|
|
11
|
+
* so IntegrationMappingRepository serves both. This interface exists for consistency and
|
|
12
|
+
* future-proofing if database-specific implementations become needed.
|
|
13
|
+
*
|
|
14
|
+
* @abstract
|
|
15
|
+
*/
|
|
16
|
+
class IntegrationMappingRepositoryInterface {
|
|
17
|
+
/**
|
|
18
|
+
* Find mapping by integration ID and source ID
|
|
19
|
+
*
|
|
20
|
+
* @param {string|number} integrationId - The integration ID
|
|
21
|
+
* @param {string} sourceId - The source ID for lookup
|
|
22
|
+
* @returns {Promise<Object|null>} The mapping object or null
|
|
23
|
+
* @abstract
|
|
24
|
+
*/
|
|
25
|
+
async findMappingBy(integrationId, sourceId) {
|
|
26
|
+
throw new Error('Method findMappingBy must be implemented by subclass');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Create or update a mapping
|
|
31
|
+
*
|
|
32
|
+
* @param {string|number} integrationId - The integration ID
|
|
33
|
+
* @param {string} sourceId - The source ID for lookup
|
|
34
|
+
* @param {Object} mapping - The mapping data
|
|
35
|
+
* @returns {Promise<Object>} The created or updated mapping document
|
|
36
|
+
* @abstract
|
|
37
|
+
*/
|
|
38
|
+
async upsertMapping(integrationId, sourceId, mapping) {
|
|
39
|
+
throw new Error('Method upsertMapping must be implemented by subclass');
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Find all mappings for an integration
|
|
44
|
+
*
|
|
45
|
+
* @param {string|number} integrationId - The integration ID
|
|
46
|
+
* @returns {Promise<Array>} Array of mapping objects
|
|
47
|
+
* @abstract
|
|
48
|
+
*/
|
|
49
|
+
async findMappingsByIntegration(integrationId) {
|
|
50
|
+
throw new Error(
|
|
51
|
+
'Method findMappingsByIntegration must be implemented by subclass'
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Delete a specific mapping
|
|
57
|
+
*
|
|
58
|
+
* @param {string|number} integrationId - The integration ID
|
|
59
|
+
* @param {string} sourceId - The source ID
|
|
60
|
+
* @returns {Promise<Object>} Deletion result
|
|
61
|
+
* @abstract
|
|
62
|
+
*/
|
|
63
|
+
async deleteMapping(integrationId, sourceId) {
|
|
64
|
+
throw new Error('Method deleteMapping must be implemented by subclass');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Delete all mappings for an integration
|
|
69
|
+
*
|
|
70
|
+
* @param {string|number} integrationId - The integration ID
|
|
71
|
+
* @returns {Promise<Object>} Deletion result
|
|
72
|
+
* @abstract
|
|
73
|
+
*/
|
|
74
|
+
async deleteMappingsByIntegration(integrationId) {
|
|
75
|
+
throw new Error(
|
|
76
|
+
'Method deleteMappingsByIntegration must be implemented by subclass'
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Count mappings grouped by integration id, for a bounded set of ids.
|
|
82
|
+
* Adapters must drain the full grouped result (a deployment can have more
|
|
83
|
+
* than one first-batch of distinct integration ids).
|
|
84
|
+
*
|
|
85
|
+
* @returns {Promise<Map<string, number>>} Map of integrationId (string) → count
|
|
86
|
+
* @abstract
|
|
87
|
+
*/
|
|
88
|
+
async countByIntegrationIds(ids) {
|
|
89
|
+
throw new Error(
|
|
90
|
+
'Method countByIntegrationIds must be implemented by subclass'
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Find mapping by ID
|
|
96
|
+
*
|
|
97
|
+
* @param {string|number} id - The mapping ID
|
|
98
|
+
* @returns {Promise<Object|null>} The mapping object or null
|
|
99
|
+
* @abstract
|
|
100
|
+
*/
|
|
101
|
+
async findMappingById(id) {
|
|
102
|
+
throw new Error(
|
|
103
|
+
'Method findMappingById must be implemented by subclass'
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Update a mapping by ID
|
|
109
|
+
*
|
|
110
|
+
* @param {string|number} id - The mapping ID
|
|
111
|
+
* @param {Object} updates - Fields to update
|
|
112
|
+
* @returns {Promise<Object>} Updated mapping object
|
|
113
|
+
* @abstract
|
|
114
|
+
*/
|
|
115
|
+
async updateMapping(id, updates) {
|
|
116
|
+
throw new Error('Method updateMapping must be implemented by subclass');
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
module.exports = { IntegrationMappingRepositoryInterface };
|