@codemation/host 1.0.1 → 1.0.2

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.
Files changed (70) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/{AppConfigFactory-BPp02HMv.js → AppConfigFactory-C4OXGOs2.js} +16 -7
  3. package/dist/{AppConfigFactory-BPp02HMv.js.map → AppConfigFactory-C4OXGOs2.js.map} +1 -1
  4. package/dist/{AppConfigFactory-PFmDg5Sg.d.ts → AppConfigFactory-D3k-R3Ch.d.ts} +338 -6
  5. package/dist/{AppContainerFactory-Cr3JeVmg.js → AppContainerFactory-CKRDz8kQ.js} +409 -92
  6. package/dist/AppContainerFactory-CKRDz8kQ.js.map +1 -0
  7. package/dist/{CodemationAppContext-DP_-56c6.d.ts → CodemationAppContext-YgJRUHWF.d.ts} +2 -2
  8. package/dist/{CodemationAuthoring.types-Cr2QZsUX.d.ts → CodemationAuthoring.types-lUdxXYq-.d.ts} +3 -3
  9. package/dist/{CodemationConfigNormalizer-B8RGUwAe.d.ts → CodemationConfigNormalizer-BWBp7mFB.d.ts} +2 -2
  10. package/dist/{CodemationConsumerConfigLoader-C_QVwcI3.d.ts → CodemationConsumerConfigLoader-Bka3v6lh.d.ts} +2 -2
  11. package/dist/{CodemationPluginListMerger-Bgn1CIX9.d.ts → CodemationPluginListMerger-Oz-GAkxz.d.ts} +17 -5
  12. package/dist/{CredentialServices-95DPogx-.d.ts → CredentialServices-CKXPg5xu.d.ts} +3 -3
  13. package/dist/{PublicFrontendBootstrapFactory-C_iLgPV-.d.ts → PublicFrontendBootstrapFactory-DkQoSYDo.d.ts} +2 -2
  14. package/dist/authoring.d.ts +3 -3
  15. package/dist/consumer.d.ts +4 -4
  16. package/dist/credentials.d.ts +3 -3
  17. package/dist/devServerSidecar.d.ts +1 -1
  18. package/dist/{index-W4eSjdCM.d.ts → index-BxIc_L4D.d.ts} +233 -151
  19. package/dist/index.d.ts +11 -11
  20. package/dist/index.js +4 -4
  21. package/dist/nextServer.d.ts +7 -7
  22. package/dist/nextServer.js +2 -2
  23. package/dist/{persistenceServer-_pqP_0nw.d.ts → persistenceServer-BLG7_6B5.d.ts} +2 -2
  24. package/dist/{persistenceServer-CA0_q0D7.js → persistenceServer-KyHL0u01.js} +2 -2
  25. package/dist/{persistenceServer-CA0_q0D7.js.map → persistenceServer-KyHL0u01.js.map} +1 -1
  26. package/dist/persistenceServer.d.ts +5 -5
  27. package/dist/persistenceServer.js +2 -2
  28. package/dist/{server-Q5uwa6iR.d.ts → server-B0SD6Nvk.d.ts} +5 -5
  29. package/dist/{server-BE4PLhcb.js → server-CMUVhYIc.js} +3 -3
  30. package/dist/{server-BE4PLhcb.js.map → server-CMUVhYIc.js.map} +1 -1
  31. package/dist/server.d.ts +8 -8
  32. package/dist/server.js +4 -4
  33. package/package.json +5 -5
  34. package/prisma/migrations/20260430120000_telemetry_iteration_identity/migration.sql +17 -0
  35. package/prisma/migrations/20260430130000_execution_instance_iteration_identity/migration.sql +11 -0
  36. package/prisma/migrations.sqlite/20260430120000_telemetry_iteration_identity/migration.sql +14 -0
  37. package/prisma/migrations.sqlite/20260430130000_execution_instance_iteration_identity/migration.sql +10 -0
  38. package/prisma/schema.postgresql.prisma +12 -0
  39. package/prisma/schema.sqlite.prisma +12 -0
  40. package/src/application/contracts/IterationCostContracts.ts +11 -0
  41. package/src/application/queries/GetIterationCostQuery.ts +14 -0
  42. package/src/application/queries/GetIterationCostQueryHandler.ts +92 -0
  43. package/src/application/queries/GetWorkflowRunDetailQueryHandler.ts +44 -2
  44. package/src/application/queries/RunIterationProjectionFactory.ts +123 -0
  45. package/src/application/queries/WorkflowQueryHandlers.ts +1 -0
  46. package/src/application/telemetry/OtelExecutionTelemetry.types.ts +3 -0
  47. package/src/application/telemetry/RunEventBusTelemetryReporter.ts +7 -0
  48. package/src/application/telemetry/StoredNodeExecutionTelemetry.ts +14 -0
  49. package/src/application/telemetry/StoredTelemetrySpanScope.ts +90 -1
  50. package/src/bootstrap/AppContainerFactory.ts +5 -0
  51. package/src/domain/telemetry/TelemetryContracts.ts +12 -0
  52. package/src/infrastructure/persistence/InMemoryTelemetryMetricPointStore.ts +3 -0
  53. package/src/infrastructure/persistence/InMemoryTelemetrySpanStore.ts +3 -0
  54. package/src/infrastructure/persistence/InMemoryWorkflowRunRepository.ts +23 -0
  55. package/src/infrastructure/persistence/PrismaTelemetryMetricPointStore.ts +9 -0
  56. package/src/infrastructure/persistence/PrismaTelemetrySpanStore.ts +6 -0
  57. package/src/infrastructure/persistence/PrismaWorkflowRunRepository.ts +12 -0
  58. package/src/infrastructure/persistence/generated/prisma-postgresql-client/edge.js +15 -6
  59. package/src/infrastructure/persistence/generated/prisma-postgresql-client/index-browser.js +11 -2
  60. package/src/infrastructure/persistence/generated/prisma-postgresql-client/index.d.ts +343 -5
  61. package/src/infrastructure/persistence/generated/prisma-postgresql-client/index.js +15 -6
  62. package/src/infrastructure/persistence/generated/prisma-postgresql-client/package.json +1 -1
  63. package/src/infrastructure/persistence/generated/prisma-postgresql-client/schema.prisma +12 -0
  64. package/src/infrastructure/persistence/generated/prisma-sqlite-client/edge.js +15 -6
  65. package/src/infrastructure/persistence/generated/prisma-sqlite-client/index-browser.js +11 -2
  66. package/src/infrastructure/persistence/generated/prisma-sqlite-client/index.d.ts +343 -5
  67. package/src/infrastructure/persistence/generated/prisma-sqlite-client/index.js +15 -6
  68. package/src/infrastructure/persistence/generated/prisma-sqlite-client/package.json +1 -1
  69. package/src/infrastructure/persistence/generated/prisma-sqlite-client/schema.prisma +12 -0
  70. package/dist/AppContainerFactory-Cr3JeVmg.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.