@rytass/bpm-core-nestjs-module 0.1.2 → 0.1.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.
Files changed (609) hide show
  1. package/eslint.config.mjs +20 -0
  2. package/jest.config.cts +15 -0
  3. package/package.json +3 -3
  4. package/project.json +58 -0
  5. package/src/lib/attachment/attachment-options.spec.ts +45 -0
  6. package/src/lib/attachment/attachment-options.ts +130 -0
  7. package/src/lib/attachment/attachment-storage.provider.spec.ts +79 -0
  8. package/src/lib/attachment/attachment-storage.provider.ts +60 -0
  9. package/src/lib/attachment/{attachment-storage.token.d.ts → attachment-storage.token.ts} +3 -1
  10. package/src/lib/attachment/attachment.controller.ts +39 -0
  11. package/src/lib/attachment/attachment.entity.ts +59 -0
  12. package/src/lib/attachment/attachment.module.ts +149 -0
  13. package/src/lib/attachment/attachment.mutations.ts +22 -0
  14. package/src/lib/attachment/attachment.queries.ts +65 -0
  15. package/src/lib/attachment/attachment.service.spec.ts +319 -0
  16. package/src/lib/attachment/attachment.service.ts +477 -0
  17. package/src/lib/attachment/dto/upload-attachment.input.ts +60 -0
  18. package/src/lib/bpm/bpm-root.module.spec.ts +138 -0
  19. package/src/lib/bpm/bpm-root.module.ts +320 -0
  20. package/src/lib/bpm-auth/bpm-auth-context.extractor.ts +106 -0
  21. package/src/lib/bpm-auth/bpm-auth-context.ts +40 -0
  22. package/src/lib/bpm-auth/bpm-auth.authorization.ts +80 -0
  23. package/src/lib/bpm-auth/bpm-auth.decorators.ts +19 -0
  24. package/src/lib/bpm-auth/bpm-auth.guard.ts +31 -0
  25. package/src/lib/bpm-auth/bpm-auth.module.spec.ts +106 -0
  26. package/src/lib/bpm-auth/bpm-auth.module.ts +69 -0
  27. package/src/lib/bpm-auth/bpm-auth.options.ts +21 -0
  28. package/src/lib/bpm-auth/configurable-bpm-auth-context.accessor.ts +55 -0
  29. package/src/lib/common/filters/all-exceptions.filter.ts +138 -0
  30. package/src/lib/common/iso-duration.ts +31 -0
  31. package/src/lib/condition/condition.module.ts +8 -0
  32. package/src/lib/condition/condition.service.spec.ts +50 -0
  33. package/src/lib/condition/condition.service.ts +141 -0
  34. package/src/lib/database/data-source.ts +7 -0
  35. package/src/lib/database/migration-runner.ts +24 -0
  36. package/src/lib/database/typeorm.config.ts +217 -0
  37. package/src/lib/delegation/delegation-rule.entity.ts +84 -0
  38. package/src/lib/delegation/delegation.enums.ts +21 -0
  39. package/src/lib/delegation/delegation.module.ts +14 -0
  40. package/src/lib/delegation/delegation.mutations.ts +92 -0
  41. package/src/lib/delegation/delegation.queries.ts +111 -0
  42. package/src/lib/delegation/delegation.service.spec.ts +295 -0
  43. package/src/lib/delegation/delegation.service.ts +482 -0
  44. package/src/lib/delegation/dto/delegation-rule.input.ts +125 -0
  45. package/src/lib/form/dto/form-definition.input.ts +73 -0
  46. package/src/lib/form/form-definition-version.entity.ts +66 -0
  47. package/src/lib/form/form-definition.entity.ts +54 -0
  48. package/src/lib/form/form-schema-lint.object.ts +10 -0
  49. package/src/lib/form/form-schema.validator.spec.ts +180 -0
  50. package/src/lib/form/form-schema.validator.ts +538 -0
  51. package/src/lib/form/form.enums.ts +20 -0
  52. package/src/lib/form/form.module.ts +19 -0
  53. package/src/lib/form/form.mutations.ts +68 -0
  54. package/src/lib/form/form.queries.ts +72 -0
  55. package/src/lib/form/form.service.spec.ts +144 -0
  56. package/src/lib/form/form.service.ts +490 -0
  57. package/src/lib/identity/identity-options.ts +41 -0
  58. package/src/lib/identity/identity.module.ts +96 -0
  59. package/src/lib/identity/identity.queries.ts +61 -0
  60. package/src/lib/identity/identity.service.spec.ts +105 -0
  61. package/src/lib/identity/identity.service.ts +200 -0
  62. package/src/lib/identity/member-base.adapter.spec.ts +77 -0
  63. package/src/lib/identity/member-base.adapter.ts +244 -0
  64. package/src/lib/identity/member-metadata-cache.entity.ts +27 -0
  65. package/src/lib/identity/member-profile.object.ts +28 -0
  66. package/src/lib/identity/{member-resolver.interface.d.ts → member-resolver.interface.ts} +11 -5
  67. package/src/lib/migrations/0000000000001-enable-postgres-extensions.ts +14 -0
  68. package/src/lib/migrations/{0000000001000-identity-organization-foundation.js → 0000000001000-identity-organization-foundation.ts} +38 -29
  69. package/src/lib/migrations/{0000000002000-form-builder-foundation.js → 0000000002000-form-builder-foundation.ts} +22 -21
  70. package/src/lib/migrations/{0000000003000-approval-template-foundation.js → 0000000003000-approval-template-foundation.ts} +24 -21
  71. package/src/lib/migrations/{0000000004000-workflow-engine-foundation.js → 0000000004000-workflow-engine-foundation.ts} +46 -34
  72. package/src/lib/migrations/{0000000005000-delegation-rules.js → 0000000005000-delegation-rules.ts} +20 -19
  73. package/src/lib/migrations/{0000000006000-notifications-sla.js → 0000000006000-notifications-sla.ts} +26 -23
  74. package/src/lib/migrations/{0000000007000-signatures-attachments.js → 0000000007000-signatures-attachments.ts} +28 -27
  75. package/src/lib/migrations/{0000000008000-approval-template-categories.js → 0000000008000-approval-template-categories.ts} +28 -25
  76. package/src/lib/migrations/{0000000009000-task-candidates.js → 0000000009000-task-candidates.ts} +26 -23
  77. package/src/lib/migrations/{0000000010000-notification-delivery-state.js → 0000000010000-notification-delivery-state.ts} +16 -17
  78. package/src/lib/migrations/0000000011000-remove-attachment-encryption-key.ts +19 -0
  79. package/src/lib/migrations/0000000012000-notification-sla-idempotency.ts +22 -0
  80. package/src/lib/migrations/0000000013000-workflow-query-indexes.ts +113 -0
  81. package/src/lib/migrations/index.ts +47 -0
  82. package/src/lib/notification/dto/notification-preference.input.ts +46 -0
  83. package/src/lib/notification/notification-delivery-scheduler.service.ts +69 -0
  84. package/src/lib/notification/notification-delivery.service.spec.ts +315 -0
  85. package/src/lib/notification/notification-delivery.service.ts +339 -0
  86. package/src/lib/notification/notification-dispatcher.token.ts +13 -0
  87. package/src/lib/notification/notification-options.module.ts +67 -0
  88. package/src/lib/notification/notification-options.spec.ts +93 -0
  89. package/src/lib/notification/notification-options.ts +452 -0
  90. package/src/lib/notification/notification-preference.entity.ts +35 -0
  91. package/src/lib/notification/notification-sla-scheduler.service.ts +66 -0
  92. package/src/lib/notification/notification-template.spec.ts +33 -0
  93. package/src/lib/notification/notification-template.ts +97 -0
  94. package/src/lib/notification/notification.entity.ts +102 -0
  95. package/src/lib/notification/notification.enums.ts +45 -0
  96. package/src/lib/notification/notification.module.ts +37 -0
  97. package/src/lib/notification/notification.mutations.ts +47 -0
  98. package/src/lib/notification/notification.queries.ts +64 -0
  99. package/src/lib/notification/notification.service.spec.ts +412 -0
  100. package/src/lib/notification/notification.service.ts +974 -0
  101. package/src/lib/organization/dto/manager-resolution.input.ts +91 -0
  102. package/src/lib/organization/dto/membership.input.ts +77 -0
  103. package/src/lib/organization/dto/org-unit.input.ts +96 -0
  104. package/src/lib/organization/dto/position.input.ts +50 -0
  105. package/src/lib/organization/json-metadata.ts +15 -0
  106. package/src/lib/organization/manager-resolution.entity.ts +44 -0
  107. package/src/lib/organization/membership.entity.ts +50 -0
  108. package/src/lib/organization/org-unit-tree-commit-result.object.ts +8 -0
  109. package/src/lib/organization/org-unit.entity.ts +53 -0
  110. package/src/lib/organization/organization-summary.object.ts +16 -0
  111. package/src/lib/organization/organization.enums.ts +19 -0
  112. package/src/lib/organization/organization.module.ts +27 -0
  113. package/src/lib/organization/organization.mutations.ts +115 -0
  114. package/src/lib/organization/organization.queries.ts +188 -0
  115. package/src/lib/organization/organization.service.spec.ts +760 -0
  116. package/src/lib/organization/organization.service.ts +1216 -0
  117. package/src/lib/organization/position.entity.ts +39 -0
  118. package/src/lib/organization/resolved-manager.object.ts +10 -0
  119. package/src/lib/signature/signature-options.spec.ts +60 -0
  120. package/src/lib/signature/signature-options.ts +120 -0
  121. package/src/lib/signature/signature-verification.object.ts +16 -0
  122. package/src/lib/signature/signature.entity.ts +62 -0
  123. package/src/lib/signature/signature.module.ts +80 -0
  124. package/src/lib/signature/signature.queries.ts +37 -0
  125. package/src/lib/signature/signature.service.spec.ts +134 -0
  126. package/src/lib/signature/signature.service.ts +205 -0
  127. package/src/lib/template/approval-template-category.entity.ts +40 -0
  128. package/src/lib/template/approval-template-version.entity.ts +82 -0
  129. package/src/lib/template/approval-template.entity.ts +64 -0
  130. package/src/lib/template/dto/approval-template.input.ts +147 -0
  131. package/src/lib/template/template.enums.ts +30 -0
  132. package/src/lib/template/template.module.ts +25 -0
  133. package/src/lib/template/template.mutations.ts +106 -0
  134. package/src/lib/template/template.queries.ts +119 -0
  135. package/src/lib/template/template.service.spec.ts +476 -0
  136. package/src/lib/template/template.service.ts +820 -0
  137. package/src/lib/template/workflow-definition.validator.spec.ts +595 -0
  138. package/src/lib/template/workflow-definition.validator.ts +539 -0
  139. package/src/lib/testing/cel-js.jest.ts +46 -0
  140. package/src/lib/workflow-engine/activity-log.entity.ts +48 -0
  141. package/src/lib/workflow-engine/approval-instance-page-info.object.ts +22 -0
  142. package/src/lib/workflow-engine/approval-instance.entity.ts +86 -0
  143. package/src/lib/workflow-engine/dto/cancel-approval-instance.input.ts +18 -0
  144. package/src/lib/workflow-engine/dto/decide-task.input.ts +33 -0
  145. package/src/lib/workflow-engine/dto/dry-run-approval-workflow.input.ts +22 -0
  146. package/src/lib/workflow-engine/dto/resubmit-approval-instance.input.ts +22 -0
  147. package/src/lib/workflow-engine/dto/submit-approval-instance.input.ts +27 -0
  148. package/src/lib/workflow-engine/task-candidate.entity.ts +56 -0
  149. package/src/lib/workflow-engine/task-decision.entity.ts +43 -0
  150. package/src/lib/workflow-engine/task.entity.ts +85 -0
  151. package/src/lib/workflow-engine/workflow-condition-evaluator.ts +168 -0
  152. package/src/lib/workflow-engine/workflow-dashboard-summary.object.ts +22 -0
  153. package/src/lib/workflow-engine/workflow-dry-run.object.ts +58 -0
  154. package/src/lib/workflow-engine/workflow-engine.enums.ts +99 -0
  155. package/src/lib/workflow-engine/workflow-engine.module.ts +75 -0
  156. package/src/lib/workflow-engine/workflow-engine.mutations.ts +85 -0
  157. package/src/lib/workflow-engine/workflow-engine.queries.ts +229 -0
  158. package/src/lib/workflow-engine/workflow-engine.service.spec.ts +2689 -0
  159. package/src/lib/workflow-engine/workflow-engine.service.ts +4707 -0
  160. package/src/lib/workflow-engine/{workflow-engine.tokens.d.ts → workflow-engine.tokens.ts} +9 -3
  161. package/src/lib/workflow-engine/workflow-service-task-dispatcher.token.ts +69 -0
  162. package/src/lib/workflow-engine/workflow-token.entity.ts +40 -0
  163. package/tsconfig.json +24 -0
  164. package/tsconfig.lib.json +16 -0
  165. package/tsconfig.spec.json +16 -0
  166. package/LICENSE +0 -21
  167. package/src/index.js +0 -18
  168. package/src/index.js.map +0 -1
  169. package/src/lib/attachment/attachment-options.d.ts +0 -44
  170. package/src/lib/attachment/attachment-options.js +0 -62
  171. package/src/lib/attachment/attachment-options.js.map +0 -1
  172. package/src/lib/attachment/attachment-storage.provider.d.ts +0 -4
  173. package/src/lib/attachment/attachment-storage.provider.js +0 -35
  174. package/src/lib/attachment/attachment-storage.provider.js.map +0 -1
  175. package/src/lib/attachment/attachment-storage.token.js +0 -5
  176. package/src/lib/attachment/attachment-storage.token.js.map +0 -1
  177. package/src/lib/attachment/attachment.controller.d.ts +0 -8
  178. package/src/lib/attachment/attachment.controller.js +0 -38
  179. package/src/lib/attachment/attachment.controller.js.map +0 -1
  180. package/src/lib/attachment/attachment.entity.d.ts +0 -14
  181. package/src/lib/attachment/attachment.entity.js +0 -74
  182. package/src/lib/attachment/attachment.entity.js.map +0 -1
  183. package/src/lib/attachment/attachment.module.d.ts +0 -27
  184. package/src/lib/attachment/attachment.module.js +0 -103
  185. package/src/lib/attachment/attachment.module.js.map +0 -1
  186. package/src/lib/attachment/attachment.mutations.d.ts +0 -8
  187. package/src/lib/attachment/attachment.mutations.js +0 -35
  188. package/src/lib/attachment/attachment.mutations.js.map +0 -1
  189. package/src/lib/attachment/attachment.queries.d.ts +0 -9
  190. package/src/lib/attachment/attachment.queries.js +0 -78
  191. package/src/lib/attachment/attachment.queries.js.map +0 -1
  192. package/src/lib/attachment/attachment.service.d.ts +0 -49
  193. package/src/lib/attachment/attachment.service.js +0 -276
  194. package/src/lib/attachment/attachment.service.js.map +0 -1
  195. package/src/lib/attachment/dto/upload-attachment.input.d.ts +0 -11
  196. package/src/lib/attachment/dto/upload-attachment.input.js +0 -68
  197. package/src/lib/attachment/dto/upload-attachment.input.js.map +0 -1
  198. package/src/lib/attachment/index.js +0 -9
  199. package/src/lib/attachment/index.js.map +0 -1
  200. package/src/lib/bpm/bpm-root.module.d.ts +0 -155
  201. package/src/lib/bpm/bpm-root.module.js +0 -170
  202. package/src/lib/bpm/bpm-root.module.js.map +0 -1
  203. package/src/lib/bpm/index.js +0 -5
  204. package/src/lib/bpm/index.js.map +0 -1
  205. package/src/lib/bpm-auth/bpm-auth-context.d.ts +0 -24
  206. package/src/lib/bpm-auth/bpm-auth-context.extractor.d.ts +0 -4
  207. package/src/lib/bpm-auth/bpm-auth-context.extractor.js +0 -69
  208. package/src/lib/bpm-auth/bpm-auth-context.extractor.js.map +0 -1
  209. package/src/lib/bpm-auth/bpm-auth-context.js +0 -15
  210. package/src/lib/bpm-auth/bpm-auth-context.js.map +0 -1
  211. package/src/lib/bpm-auth/bpm-auth.authorization.d.ts +0 -12
  212. package/src/lib/bpm-auth/bpm-auth.authorization.js +0 -67
  213. package/src/lib/bpm-auth/bpm-auth.authorization.js.map +0 -1
  214. package/src/lib/bpm-auth/bpm-auth.decorators.d.ts +0 -3
  215. package/src/lib/bpm-auth/bpm-auth.decorators.js +0 -11
  216. package/src/lib/bpm-auth/bpm-auth.decorators.js.map +0 -1
  217. package/src/lib/bpm-auth/bpm-auth.guard.d.ts +0 -7
  218. package/src/lib/bpm-auth/bpm-auth.guard.js +0 -24
  219. package/src/lib/bpm-auth/bpm-auth.guard.js.map +0 -1
  220. package/src/lib/bpm-auth/bpm-auth.module.d.ts +0 -6
  221. package/src/lib/bpm-auth/bpm-auth.module.js +0 -69
  222. package/src/lib/bpm-auth/bpm-auth.module.js.map +0 -1
  223. package/src/lib/bpm-auth/bpm-auth.options.d.ts +0 -11
  224. package/src/lib/bpm-auth/bpm-auth.options.js +0 -3
  225. package/src/lib/bpm-auth/bpm-auth.options.js.map +0 -1
  226. package/src/lib/bpm-auth/configurable-bpm-auth-context.accessor.d.ts +0 -10
  227. package/src/lib/bpm-auth/configurable-bpm-auth-context.accessor.js +0 -40
  228. package/src/lib/bpm-auth/configurable-bpm-auth-context.accessor.js.map +0 -1
  229. package/src/lib/bpm-auth/index.js +0 -10
  230. package/src/lib/bpm-auth/index.js.map +0 -1
  231. package/src/lib/common/filters/all-exceptions.filter.d.ts +0 -25
  232. package/src/lib/common/filters/all-exceptions.filter.js +0 -93
  233. package/src/lib/common/filters/all-exceptions.filter.js.map +0 -1
  234. package/src/lib/common/index.js +0 -5
  235. package/src/lib/common/index.js.map +0 -1
  236. package/src/lib/common/iso-duration.d.ts +0 -1
  237. package/src/lib/common/iso-duration.js +0 -27
  238. package/src/lib/common/iso-duration.js.map +0 -1
  239. package/src/lib/condition/condition.module.d.ts +0 -2
  240. package/src/lib/condition/condition.module.js +0 -16
  241. package/src/lib/condition/condition.module.js.map +0 -1
  242. package/src/lib/condition/condition.service.d.ts +0 -16
  243. package/src/lib/condition/condition.service.js +0 -82
  244. package/src/lib/condition/condition.service.js.map +0 -1
  245. package/src/lib/condition/index.js +0 -6
  246. package/src/lib/condition/index.js.map +0 -1
  247. package/src/lib/database/data-source.d.ts +0 -4
  248. package/src/lib/database/data-source.js +0 -7
  249. package/src/lib/database/data-source.js.map +0 -1
  250. package/src/lib/database/index.js +0 -6
  251. package/src/lib/database/index.js.map +0 -1
  252. package/src/lib/database/migration-runner.d.ts +0 -1
  253. package/src/lib/database/migration-runner.js +0 -23
  254. package/src/lib/database/migration-runner.js.map +0 -1
  255. package/src/lib/database/typeorm.config.d.ts +0 -14
  256. package/src/lib/database/typeorm.config.js +0 -135
  257. package/src/lib/database/typeorm.config.js.map +0 -1
  258. package/src/lib/delegation/delegation-rule.entity.d.ts +0 -19
  259. package/src/lib/delegation/delegation-rule.entity.js +0 -99
  260. package/src/lib/delegation/delegation-rule.entity.js.map +0 -1
  261. package/src/lib/delegation/delegation.enums.d.ts +0 -10
  262. package/src/lib/delegation/delegation.enums.js +0 -23
  263. package/src/lib/delegation/delegation.enums.js.map +0 -1
  264. package/src/lib/delegation/delegation.module.d.ts +0 -2
  265. package/src/lib/delegation/delegation.module.js +0 -22
  266. package/src/lib/delegation/delegation.module.js.map +0 -1
  267. package/src/lib/delegation/delegation.mutations.d.ts +0 -11
  268. package/src/lib/delegation/delegation.mutations.js +0 -87
  269. package/src/lib/delegation/delegation.mutations.js.map +0 -1
  270. package/src/lib/delegation/delegation.queries.d.ts +0 -10
  271. package/src/lib/delegation/delegation.queries.js +0 -91
  272. package/src/lib/delegation/delegation.queries.js.map +0 -1
  273. package/src/lib/delegation/delegation.service.d.ts +0 -56
  274. package/src/lib/delegation/delegation.service.js +0 -268
  275. package/src/lib/delegation/delegation.service.js.map +0 -1
  276. package/src/lib/delegation/dto/delegation-rule.input.d.ts +0 -24
  277. package/src/lib/delegation/dto/delegation-rule.input.js +0 -143
  278. package/src/lib/delegation/dto/delegation-rule.input.js.map +0 -1
  279. package/src/lib/delegation/index.js +0 -9
  280. package/src/lib/delegation/index.js.map +0 -1
  281. package/src/lib/form/dto/form-definition.input.d.ts +0 -21
  282. package/src/lib/form/dto/form-definition.input.js +0 -103
  283. package/src/lib/form/dto/form-definition.input.js.map +0 -1
  284. package/src/lib/form/form-definition-version.entity.d.ts +0 -17
  285. package/src/lib/form/form-definition-version.entity.js +0 -84
  286. package/src/lib/form/form-definition-version.entity.js.map +0 -1
  287. package/src/lib/form/form-definition.entity.d.ts +0 -13
  288. package/src/lib/form/form-definition.entity.js +0 -66
  289. package/src/lib/form/form-definition.entity.js.map +0 -1
  290. package/src/lib/form/form-schema-lint.object.d.ts +0 -4
  291. package/src/lib/form/form-schema-lint.object.js +0 -20
  292. package/src/lib/form/form-schema-lint.object.js.map +0 -1
  293. package/src/lib/form/form-schema.validator.d.ts +0 -13
  294. package/src/lib/form/form-schema.validator.js +0 -354
  295. package/src/lib/form/form-schema.validator.js.map +0 -1
  296. package/src/lib/form/form.enums.d.ts +0 -9
  297. package/src/lib/form/form.enums.js +0 -22
  298. package/src/lib/form/form.enums.js.map +0 -1
  299. package/src/lib/form/form.module.d.ts +0 -2
  300. package/src/lib/form/form.module.js +0 -27
  301. package/src/lib/form/form.module.js.map +0 -1
  302. package/src/lib/form/form.mutations.d.ts +0 -14
  303. package/src/lib/form/form.mutations.js +0 -88
  304. package/src/lib/form/form.mutations.js.map +0 -1
  305. package/src/lib/form/form.queries.d.ts +0 -16
  306. package/src/lib/form/form.queries.js +0 -96
  307. package/src/lib/form/form.queries.js.map +0 -1
  308. package/src/lib/form/form.service.d.ts +0 -35
  309. package/src/lib/form/form.service.js +0 -297
  310. package/src/lib/form/form.service.js.map +0 -1
  311. package/src/lib/form/index.js +0 -12
  312. package/src/lib/form/index.js.map +0 -1
  313. package/src/lib/identity/identity-options.d.ts +0 -13
  314. package/src/lib/identity/identity-options.js +0 -20
  315. package/src/lib/identity/identity-options.js.map +0 -1
  316. package/src/lib/identity/identity.module.d.ts +0 -17
  317. package/src/lib/identity/identity.module.js +0 -65
  318. package/src/lib/identity/identity.module.js.map +0 -1
  319. package/src/lib/identity/identity.queries.d.ts +0 -12
  320. package/src/lib/identity/identity.queries.js +0 -79
  321. package/src/lib/identity/identity.queries.js.map +0 -1
  322. package/src/lib/identity/identity.service.d.ts +0 -22
  323. package/src/lib/identity/identity.service.js +0 -141
  324. package/src/lib/identity/identity.service.js.map +0 -1
  325. package/src/lib/identity/index.js +0 -7
  326. package/src/lib/identity/index.js.map +0 -1
  327. package/src/lib/identity/member-base.adapter.d.ts +0 -95
  328. package/src/lib/identity/member-base.adapter.js +0 -137
  329. package/src/lib/identity/member-base.adapter.js.map +0 -1
  330. package/src/lib/identity/member-metadata-cache.entity.d.ts +0 -8
  331. package/src/lib/identity/member-metadata-cache.entity.js +0 -39
  332. package/src/lib/identity/member-metadata-cache.entity.js.map +0 -1
  333. package/src/lib/identity/member-profile.object.d.ts +0 -8
  334. package/src/lib/identity/member-profile.object.js +0 -37
  335. package/src/lib/identity/member-profile.object.js.map +0 -1
  336. package/src/lib/identity/member-resolver.interface.js +0 -19
  337. package/src/lib/identity/member-resolver.interface.js.map +0 -1
  338. package/src/lib/migrations/0000000000001-enable-postgres-extensions.d.ts +0 -6
  339. package/src/lib/migrations/0000000000001-enable-postgres-extensions.js +0 -17
  340. package/src/lib/migrations/0000000000001-enable-postgres-extensions.js.map +0 -1
  341. package/src/lib/migrations/0000000001000-identity-organization-foundation.d.ts +0 -6
  342. package/src/lib/migrations/0000000001000-identity-organization-foundation.js.map +0 -1
  343. package/src/lib/migrations/0000000002000-form-builder-foundation.d.ts +0 -6
  344. package/src/lib/migrations/0000000002000-form-builder-foundation.js.map +0 -1
  345. package/src/lib/migrations/0000000003000-approval-template-foundation.d.ts +0 -6
  346. package/src/lib/migrations/0000000003000-approval-template-foundation.js.map +0 -1
  347. package/src/lib/migrations/0000000004000-workflow-engine-foundation.d.ts +0 -6
  348. package/src/lib/migrations/0000000004000-workflow-engine-foundation.js.map +0 -1
  349. package/src/lib/migrations/0000000005000-delegation-rules.d.ts +0 -6
  350. package/src/lib/migrations/0000000005000-delegation-rules.js.map +0 -1
  351. package/src/lib/migrations/0000000006000-notifications-sla.d.ts +0 -6
  352. package/src/lib/migrations/0000000006000-notifications-sla.js.map +0 -1
  353. package/src/lib/migrations/0000000007000-signatures-attachments.d.ts +0 -6
  354. package/src/lib/migrations/0000000007000-signatures-attachments.js.map +0 -1
  355. package/src/lib/migrations/0000000008000-approval-template-categories.d.ts +0 -6
  356. package/src/lib/migrations/0000000008000-approval-template-categories.js.map +0 -1
  357. package/src/lib/migrations/0000000009000-task-candidates.d.ts +0 -6
  358. package/src/lib/migrations/0000000009000-task-candidates.js.map +0 -1
  359. package/src/lib/migrations/0000000010000-notification-delivery-state.d.ts +0 -6
  360. package/src/lib/migrations/0000000010000-notification-delivery-state.js.map +0 -1
  361. package/src/lib/migrations/0000000011000-remove-attachment-encryption-key.d.ts +0 -6
  362. package/src/lib/migrations/0000000011000-remove-attachment-encryption-key.js +0 -22
  363. package/src/lib/migrations/0000000011000-remove-attachment-encryption-key.js.map +0 -1
  364. package/src/lib/migrations/0000000012000-notification-sla-idempotency.d.ts +0 -6
  365. package/src/lib/migrations/0000000012000-notification-sla-idempotency.js +0 -21
  366. package/src/lib/migrations/0000000012000-notification-sla-idempotency.js.map +0 -1
  367. package/src/lib/migrations/0000000013000-workflow-query-indexes.d.ts +0 -6
  368. package/src/lib/migrations/0000000013000-workflow-query-indexes.js +0 -80
  369. package/src/lib/migrations/0000000013000-workflow-query-indexes.js.map +0 -1
  370. package/src/lib/migrations/index.d.ts +0 -16
  371. package/src/lib/migrations/index.js +0 -49
  372. package/src/lib/migrations/index.js.map +0 -1
  373. package/src/lib/notification/dto/notification-preference.input.d.ts +0 -9
  374. package/src/lib/notification/dto/notification-preference.input.js +0 -53
  375. package/src/lib/notification/dto/notification-preference.input.js.map +0 -1
  376. package/src/lib/notification/index.js +0 -11
  377. package/src/lib/notification/index.js.map +0 -1
  378. package/src/lib/notification/notification-delivery-scheduler.service.d.ts +0 -13
  379. package/src/lib/notification/notification-delivery-scheduler.service.js +0 -53
  380. package/src/lib/notification/notification-delivery-scheduler.service.js.map +0 -1
  381. package/src/lib/notification/notification-delivery.service.d.ts +0 -23
  382. package/src/lib/notification/notification-delivery.service.js +0 -245
  383. package/src/lib/notification/notification-delivery.service.js.map +0 -1
  384. package/src/lib/notification/notification-dispatcher.token.d.ts +0 -7
  385. package/src/lib/notification/notification-dispatcher.token.js +0 -5
  386. package/src/lib/notification/notification-dispatcher.token.js.map +0 -1
  387. package/src/lib/notification/notification-options.d.ts +0 -215
  388. package/src/lib/notification/notification-options.js +0 -128
  389. package/src/lib/notification/notification-options.js.map +0 -1
  390. package/src/lib/notification/notification-options.module.d.ts +0 -23
  391. package/src/lib/notification/notification-options.module.js +0 -41
  392. package/src/lib/notification/notification-options.module.js.map +0 -1
  393. package/src/lib/notification/notification-preference.entity.d.ts +0 -10
  394. package/src/lib/notification/notification-preference.entity.js +0 -50
  395. package/src/lib/notification/notification-preference.entity.js.map +0 -1
  396. package/src/lib/notification/notification-sla-scheduler.service.d.ts +0 -13
  397. package/src/lib/notification/notification-sla-scheduler.service.js +0 -51
  398. package/src/lib/notification/notification-sla-scheduler.service.js.map +0 -1
  399. package/src/lib/notification/notification-template.d.ts +0 -13
  400. package/src/lib/notification/notification-template.js +0 -61
  401. package/src/lib/notification/notification-template.js.map +0 -1
  402. package/src/lib/notification/notification.entity.d.ts +0 -23
  403. package/src/lib/notification/notification.entity.js +0 -122
  404. package/src/lib/notification/notification.entity.js.map +0 -1
  405. package/src/lib/notification/notification.enums.d.ts +0 -24
  406. package/src/lib/notification/notification.enums.js +0 -45
  407. package/src/lib/notification/notification.enums.js.map +0 -1
  408. package/src/lib/notification/notification.module.d.ts +0 -2
  409. package/src/lib/notification/notification.module.js +0 -45
  410. package/src/lib/notification/notification.module.js.map +0 -1
  411. package/src/lib/notification/notification.mutations.d.ts +0 -11
  412. package/src/lib/notification/notification.mutations.js +0 -64
  413. package/src/lib/notification/notification.mutations.js.map +0 -1
  414. package/src/lib/notification/notification.queries.d.ts +0 -11
  415. package/src/lib/notification/notification.queries.js +0 -77
  416. package/src/lib/notification/notification.queries.js.map +0 -1
  417. package/src/lib/notification/notification.service.d.ts +0 -81
  418. package/src/lib/notification/notification.service.js +0 -621
  419. package/src/lib/notification/notification.service.js.map +0 -1
  420. package/src/lib/organization/dto/manager-resolution.input.d.ts +0 -18
  421. package/src/lib/organization/dto/manager-resolution.input.js +0 -107
  422. package/src/lib/organization/dto/manager-resolution.input.js.map +0 -1
  423. package/src/lib/organization/dto/membership.input.d.ts +0 -16
  424. package/src/lib/organization/dto/membership.input.js +0 -99
  425. package/src/lib/organization/dto/membership.input.js.map +0 -1
  426. package/src/lib/organization/dto/org-unit.input.d.ts +0 -24
  427. package/src/lib/organization/dto/org-unit.input.js +0 -119
  428. package/src/lib/organization/dto/org-unit.input.js.map +0 -1
  429. package/src/lib/organization/dto/position.input.d.ts +0 -13
  430. package/src/lib/organization/dto/position.input.js +0 -70
  431. package/src/lib/organization/dto/position.input.js.map +0 -1
  432. package/src/lib/organization/index.js +0 -16
  433. package/src/lib/organization/index.js.map +0 -1
  434. package/src/lib/organization/json-metadata.d.ts +0 -1
  435. package/src/lib/organization/json-metadata.js +0 -14
  436. package/src/lib/organization/json-metadata.js.map +0 -1
  437. package/src/lib/organization/manager-resolution.entity.d.ts +0 -11
  438. package/src/lib/organization/manager-resolution.entity.js +0 -55
  439. package/src/lib/organization/manager-resolution.entity.js.map +0 -1
  440. package/src/lib/organization/membership.entity.d.ts +0 -11
  441. package/src/lib/organization/membership.entity.js +0 -60
  442. package/src/lib/organization/membership.entity.js.map +0 -1
  443. package/src/lib/organization/org-unit-tree-commit-result.object.d.ts +0 -4
  444. package/src/lib/organization/org-unit-tree-commit-result.object.js +0 -17
  445. package/src/lib/organization/org-unit-tree-commit-result.object.js.map +0 -1
  446. package/src/lib/organization/org-unit.entity.d.ts +0 -13
  447. package/src/lib/organization/org-unit.entity.js +0 -64
  448. package/src/lib/organization/org-unit.entity.js.map +0 -1
  449. package/src/lib/organization/organization-summary.object.d.ts +0 -6
  450. package/src/lib/organization/organization-summary.object.js +0 -28
  451. package/src/lib/organization/organization-summary.object.js.map +0 -1
  452. package/src/lib/organization/organization.enums.d.ts +0 -11
  453. package/src/lib/organization/organization.enums.js +0 -22
  454. package/src/lib/organization/organization.enums.js.map +0 -1
  455. package/src/lib/organization/organization.module.d.ts +0 -2
  456. package/src/lib/organization/organization.module.js +0 -35
  457. package/src/lib/organization/organization.module.js.map +0 -1
  458. package/src/lib/organization/organization.mutations.d.ts +0 -26
  459. package/src/lib/organization/organization.mutations.js +0 -148
  460. package/src/lib/organization/organization.mutations.js.map +0 -1
  461. package/src/lib/organization/organization.queries.d.ts +0 -23
  462. package/src/lib/organization/organization.queries.js +0 -202
  463. package/src/lib/organization/organization.queries.js.map +0 -1
  464. package/src/lib/organization/organization.service.d.ts +0 -102
  465. package/src/lib/organization/organization.service.js +0 -751
  466. package/src/lib/organization/organization.service.js.map +0 -1
  467. package/src/lib/organization/position.entity.d.ts +0 -9
  468. package/src/lib/organization/position.entity.js +0 -48
  469. package/src/lib/organization/position.entity.js.map +0 -1
  470. package/src/lib/organization/resolved-manager.object.d.ts +0 -4
  471. package/src/lib/organization/resolved-manager.object.js +0 -20
  472. package/src/lib/organization/resolved-manager.object.js.map +0 -1
  473. package/src/lib/signature/index.js +0 -8
  474. package/src/lib/signature/index.js.map +0 -1
  475. package/src/lib/signature/signature-options.d.ts +0 -33
  476. package/src/lib/signature/signature-options.js +0 -51
  477. package/src/lib/signature/signature-options.js.map +0 -1
  478. package/src/lib/signature/signature-verification.object.d.ts +0 -6
  479. package/src/lib/signature/signature-verification.object.js +0 -28
  480. package/src/lib/signature/signature-verification.object.js.map +0 -1
  481. package/src/lib/signature/signature.entity.d.ts +0 -16
  482. package/src/lib/signature/signature.entity.js +0 -88
  483. package/src/lib/signature/signature.entity.js.map +0 -1
  484. package/src/lib/signature/signature.module.d.ts +0 -11
  485. package/src/lib/signature/signature.module.js +0 -60
  486. package/src/lib/signature/signature.module.js.map +0 -1
  487. package/src/lib/signature/signature.queries.d.ts +0 -11
  488. package/src/lib/signature/signature.queries.js +0 -46
  489. package/src/lib/signature/signature.queries.js.map +0 -1
  490. package/src/lib/signature/signature.service.d.ts +0 -25
  491. package/src/lib/signature/signature.service.js +0 -124
  492. package/src/lib/signature/signature.service.js.map +0 -1
  493. package/src/lib/template/approval-template-category.entity.d.ts +0 -9
  494. package/src/lib/template/approval-template-category.entity.js +0 -49
  495. package/src/lib/template/approval-template-category.entity.js.map +0 -1
  496. package/src/lib/template/approval-template-version.entity.d.ts +0 -21
  497. package/src/lib/template/approval-template-version.entity.js +0 -106
  498. package/src/lib/template/approval-template-version.entity.js.map +0 -1
  499. package/src/lib/template/approval-template.entity.d.ts +0 -14
  500. package/src/lib/template/approval-template.entity.js +0 -74
  501. package/src/lib/template/approval-template.entity.js.map +0 -1
  502. package/src/lib/template/dto/approval-template.input.d.ts +0 -36
  503. package/src/lib/template/dto/approval-template.input.js +0 -187
  504. package/src/lib/template/dto/approval-template.input.js.map +0 -1
  505. package/src/lib/template/index.js +0 -12
  506. package/src/lib/template/index.js.map +0 -1
  507. package/src/lib/template/template.enums.d.ts +0 -14
  508. package/src/lib/template/template.enums.js +0 -31
  509. package/src/lib/template/template.enums.js.map +0 -1
  510. package/src/lib/template/template.module.d.ts +0 -2
  511. package/src/lib/template/template.module.js +0 -33
  512. package/src/lib/template/template.module.js.map +0 -1
  513. package/src/lib/template/template.mutations.d.ts +0 -20
  514. package/src/lib/template/template.mutations.js +0 -139
  515. package/src/lib/template/template.mutations.js.map +0 -1
  516. package/src/lib/template/template.queries.d.ts +0 -16
  517. package/src/lib/template/template.queries.js +0 -133
  518. package/src/lib/template/template.queries.js.map +0 -1
  519. package/src/lib/template/template.service.d.ts +0 -64
  520. package/src/lib/template/template.service.js +0 -521
  521. package/src/lib/template/template.service.js.map +0 -1
  522. package/src/lib/template/workflow-definition.validator.d.ts +0 -9
  523. package/src/lib/template/workflow-definition.validator.js +0 -362
  524. package/src/lib/template/workflow-definition.validator.js.map +0 -1
  525. package/src/lib/testing/cel-js.jest.d.ts +0 -15
  526. package/src/lib/testing/cel-js.jest.js +0 -27
  527. package/src/lib/testing/cel-js.jest.js.map +0 -1
  528. package/src/lib/workflow-engine/activity-log.entity.d.ts +0 -12
  529. package/src/lib/workflow-engine/activity-log.entity.js +0 -62
  530. package/src/lib/workflow-engine/activity-log.entity.js.map +0 -1
  531. package/src/lib/workflow-engine/approval-instance-page-info.object.d.ts +0 -8
  532. package/src/lib/workflow-engine/approval-instance-page-info.object.js +0 -36
  533. package/src/lib/workflow-engine/approval-instance-page-info.object.js.map +0 -1
  534. package/src/lib/workflow-engine/approval-instance.entity.d.ts +0 -22
  535. package/src/lib/workflow-engine/approval-instance.entity.js +0 -113
  536. package/src/lib/workflow-engine/approval-instance.entity.js.map +0 -1
  537. package/src/lib/workflow-engine/dto/cancel-approval-instance.input.d.ts +0 -5
  538. package/src/lib/workflow-engine/dto/cancel-approval-instance.input.js +0 -29
  539. package/src/lib/workflow-engine/dto/cancel-approval-instance.input.js.map +0 -1
  540. package/src/lib/workflow-engine/dto/decide-task.input.d.ts +0 -9
  541. package/src/lib/workflow-engine/dto/decide-task.input.js +0 -47
  542. package/src/lib/workflow-engine/dto/decide-task.input.js.map +0 -1
  543. package/src/lib/workflow-engine/dto/dry-run-approval-workflow.input.d.ts +0 -6
  544. package/src/lib/workflow-engine/dto/dry-run-approval-workflow.input.js +0 -34
  545. package/src/lib/workflow-engine/dto/dry-run-approval-workflow.input.js.map +0 -1
  546. package/src/lib/workflow-engine/dto/resubmit-approval-instance.input.d.ts +0 -6
  547. package/src/lib/workflow-engine/dto/resubmit-approval-instance.input.js +0 -34
  548. package/src/lib/workflow-engine/dto/resubmit-approval-instance.input.js.map +0 -1
  549. package/src/lib/workflow-engine/dto/submit-approval-instance.input.d.ts +0 -7
  550. package/src/lib/workflow-engine/dto/submit-approval-instance.input.js +0 -40
  551. package/src/lib/workflow-engine/dto/submit-approval-instance.input.js.map +0 -1
  552. package/src/lib/workflow-engine/index.js +0 -24
  553. package/src/lib/workflow-engine/index.js.map +0 -1
  554. package/src/lib/workflow-engine/task-candidate.entity.d.ts +0 -14
  555. package/src/lib/workflow-engine/task-candidate.entity.js +0 -72
  556. package/src/lib/workflow-engine/task-candidate.entity.js.map +0 -1
  557. package/src/lib/workflow-engine/task-decision.entity.d.ts +0 -12
  558. package/src/lib/workflow-engine/task-decision.entity.js +0 -60
  559. package/src/lib/workflow-engine/task-decision.entity.js.map +0 -1
  560. package/src/lib/workflow-engine/task.entity.d.ts +0 -20
  561. package/src/lib/workflow-engine/task.entity.js +0 -109
  562. package/src/lib/workflow-engine/task.entity.js.map +0 -1
  563. package/src/lib/workflow-engine/workflow-condition-evaluator.d.ts +0 -5
  564. package/src/lib/workflow-engine/workflow-condition-evaluator.js +0 -107
  565. package/src/lib/workflow-engine/workflow-condition-evaluator.js.map +0 -1
  566. package/src/lib/workflow-engine/workflow-dashboard-summary.object.d.ts +0 -8
  567. package/src/lib/workflow-engine/workflow-dashboard-summary.object.js +0 -36
  568. package/src/lib/workflow-engine/workflow-dashboard-summary.object.js.map +0 -1
  569. package/src/lib/workflow-engine/workflow-dry-run.object.d.ts +0 -21
  570. package/src/lib/workflow-engine/workflow-dry-run.object.js +0 -86
  571. package/src/lib/workflow-engine/workflow-dry-run.object.js.map +0 -1
  572. package/src/lib/workflow-engine/workflow-engine.enums.d.ts +0 -58
  573. package/src/lib/workflow-engine/workflow-engine.enums.js +0 -95
  574. package/src/lib/workflow-engine/workflow-engine.enums.js.map +0 -1
  575. package/src/lib/workflow-engine/workflow-engine.module.d.ts +0 -9
  576. package/src/lib/workflow-engine/workflow-engine.module.js +0 -76
  577. package/src/lib/workflow-engine/workflow-engine.module.js.map +0 -1
  578. package/src/lib/workflow-engine/workflow-engine.mutations.d.ts +0 -19
  579. package/src/lib/workflow-engine/workflow-engine.mutations.js +0 -106
  580. package/src/lib/workflow-engine/workflow-engine.mutations.js.map +0 -1
  581. package/src/lib/workflow-engine/workflow-engine.queries.d.ts +0 -29
  582. package/src/lib/workflow-engine/workflow-engine.queries.js +0 -225
  583. package/src/lib/workflow-engine/workflow-engine.queries.js.map +0 -1
  584. package/src/lib/workflow-engine/workflow-engine.service.d.ts +0 -145
  585. package/src/lib/workflow-engine/workflow-engine.service.js +0 -2785
  586. package/src/lib/workflow-engine/workflow-engine.service.js.map +0 -1
  587. package/src/lib/workflow-engine/workflow-engine.tokens.js +0 -5
  588. package/src/lib/workflow-engine/workflow-engine.tokens.js.map +0 -1
  589. package/src/lib/workflow-engine/workflow-service-task-dispatcher.token.d.ts +0 -18
  590. package/src/lib/workflow-engine/workflow-service-task-dispatcher.token.js +0 -39
  591. package/src/lib/workflow-engine/workflow-service-task-dispatcher.token.js.map +0 -1
  592. package/src/lib/workflow-engine/workflow-token.entity.d.ts +0 -10
  593. package/src/lib/workflow-engine/workflow-token.entity.js +0 -50
  594. package/src/lib/workflow-engine/workflow-token.entity.js.map +0 -1
  595. /package/src/{index.d.ts → index.ts} +0 -0
  596. /package/src/lib/attachment/{index.d.ts → index.ts} +0 -0
  597. /package/src/lib/bpm/{index.d.ts → index.ts} +0 -0
  598. /package/src/lib/bpm-auth/{index.d.ts → index.ts} +0 -0
  599. /package/src/lib/common/{index.d.ts → index.ts} +0 -0
  600. /package/src/lib/condition/{index.d.ts → index.ts} +0 -0
  601. /package/src/lib/database/{index.d.ts → index.ts} +0 -0
  602. /package/src/lib/delegation/{index.d.ts → index.ts} +0 -0
  603. /package/src/lib/form/{index.d.ts → index.ts} +0 -0
  604. /package/src/lib/identity/{index.d.ts → index.ts} +0 -0
  605. /package/src/lib/notification/{index.d.ts → index.ts} +0 -0
  606. /package/src/lib/organization/{index.d.ts → index.ts} +0 -0
  607. /package/src/lib/signature/{index.d.ts → index.ts} +0 -0
  608. /package/src/lib/template/{index.d.ts → index.ts} +0 -0
  609. /package/src/lib/workflow-engine/{index.d.ts → index.ts} +0 -0
@@ -0,0 +1,760 @@
1
+ import { DataSource, Repository } from 'typeorm';
2
+ import { ManagerResolutionEntity } from './manager-resolution.entity';
3
+ import { MembershipEntity } from './membership.entity';
4
+ import { OrgUnitEntity } from './org-unit.entity';
5
+ import {
6
+ ManagerResolutionScopeTypeEnum,
7
+ OrgUnitTypeEnum,
8
+ } from './organization.enums';
9
+ import { OrganizationService } from './organization.service';
10
+ import { PositionEntity } from './position.entity';
11
+
12
+ const baseUpdatedAt = new Date('2026-05-12T08:00:00.000Z');
13
+
14
+ describe('OrganizationService', () => {
15
+ it('resolves member-scoped manager by highest priority', async (): Promise<void> => {
16
+ const managerResolutionRepository = {
17
+ find: jest.fn<Promise<readonly ManagerResolutionEntity[]>, []>(() =>
18
+ Promise.resolve([
19
+ {
20
+ createdAt: new Date(),
21
+ effectiveFrom: '2026-01-01',
22
+ effectiveTo: null,
23
+ id: 'rule-low',
24
+ managerMemberId: 'manager-low',
25
+ priority: 1,
26
+ scopeId: 'member-1',
27
+ scopeType: ManagerResolutionScopeTypeEnum.MEMBER,
28
+ },
29
+ {
30
+ createdAt: new Date(),
31
+ effectiveFrom: '2026-01-01',
32
+ effectiveTo: null,
33
+ id: 'rule-high',
34
+ managerMemberId: 'manager-high',
35
+ priority: 10,
36
+ scopeId: 'member-1',
37
+ scopeType: ManagerResolutionScopeTypeEnum.MEMBER,
38
+ },
39
+ ]),
40
+ ),
41
+ } as unknown as Repository<ManagerResolutionEntity>;
42
+ const membershipRepository = {
43
+ find: jest.fn<Promise<readonly MembershipEntity[]>, []>(() =>
44
+ Promise.resolve([]),
45
+ ),
46
+ } as unknown as Repository<MembershipEntity>;
47
+ const service = new OrganizationService(
48
+ {} as DataSource,
49
+ {} as Repository<OrgUnitEntity>,
50
+ {} as Repository<PositionEntity>,
51
+ membershipRepository,
52
+ managerResolutionRepository,
53
+ );
54
+
55
+ await expect(
56
+ service.resolveManagerMemberId('member-1', new Date('2026-04-30')),
57
+ ).resolves.toBe('manager-high');
58
+ });
59
+
60
+ it('creates org unit paths with ltree-safe identifiers', async (): Promise<void> => {
61
+ const orgUnitRepository = {
62
+ create: jest.fn((entity: Partial<OrgUnitEntity>): OrgUnitEntity => {
63
+ return {
64
+ code: entity.code ?? 'ROOT',
65
+ createdAt: new Date(),
66
+ deletedAt: null,
67
+ id: entity.id ?? 'id',
68
+ metadata: entity.metadata ?? {},
69
+ name: entity.name ?? 'Root',
70
+ parentId: entity.parentId ?? null,
71
+ path: entity.path ?? '',
72
+ type: entity.type ?? OrgUnitTypeEnum.COMPANY,
73
+ updatedAt: new Date(),
74
+ };
75
+ }),
76
+ findOne: jest.fn<Promise<OrgUnitEntity | null>, []>(() =>
77
+ Promise.resolve(null),
78
+ ),
79
+ save: jest.fn((entity: OrgUnitEntity): Promise<OrgUnitEntity> => {
80
+ return Promise.resolve(entity);
81
+ }),
82
+ } as unknown as Repository<OrgUnitEntity>;
83
+ const service = new OrganizationService(
84
+ {} as DataSource,
85
+ orgUnitRepository,
86
+ {} as Repository<PositionEntity>,
87
+ {} as Repository<MembershipEntity>,
88
+ {} as Repository<ManagerResolutionEntity>,
89
+ );
90
+
91
+ const orgUnit = await service.createOrgUnit({
92
+ code: 'ROOT',
93
+ metadataJson: '{}',
94
+ name: 'Root',
95
+ parentId: null,
96
+ type: OrgUnitTypeEnum.COMPANY,
97
+ });
98
+
99
+ expect(orgUnit.path).toMatch(/^org\.n[0-9a-f_]+$/);
100
+ expect(orgUnitRepository.save).toHaveBeenCalledTimes(1);
101
+ });
102
+
103
+ it('pushes org unit filters into repository query', async (): Promise<void> => {
104
+ const find = jest.fn(
105
+ (): Promise<readonly OrgUnitEntity[]> => Promise.resolve([]),
106
+ );
107
+ const orgUnitRepository = {
108
+ find,
109
+ } as unknown as Repository<OrgUnitEntity>;
110
+ const service = new OrganizationService(
111
+ {} as DataSource,
112
+ orgUnitRepository,
113
+ {} as Repository<PositionEntity>,
114
+ {} as Repository<MembershipEntity>,
115
+ {} as Repository<ManagerResolutionEntity>,
116
+ );
117
+
118
+ await service.listOrgUnits({
119
+ page: 2,
120
+ pageSize: 5,
121
+ searchText: '財務',
122
+ type: OrgUnitTypeEnum.DEPARTMENT,
123
+ });
124
+
125
+ expect(find).toHaveBeenCalledWith(
126
+ expect.objectContaining({
127
+ order: { path: 'ASC' },
128
+ skip: 5,
129
+ take: 5,
130
+ where: expect.arrayContaining([
131
+ expect.objectContaining({
132
+ code: expect.any(Object),
133
+ deletedAt: expect.any(Object),
134
+ type: OrgUnitTypeEnum.DEPARTMENT,
135
+ }),
136
+ expect.objectContaining({
137
+ deletedAt: expect.any(Object),
138
+ name: expect.any(Object),
139
+ type: OrgUnitTypeEnum.DEPARTMENT,
140
+ }),
141
+ ]),
142
+ }),
143
+ );
144
+ });
145
+
146
+ it('pushes organization table filters into paginated repository queries', async (): Promise<void> => {
147
+ const positionFind = jest.fn(
148
+ (): Promise<readonly PositionEntity[]> => Promise.resolve([]),
149
+ );
150
+ const membershipFind = jest.fn(
151
+ (): Promise<readonly MembershipEntity[]> => Promise.resolve([]),
152
+ );
153
+ const managerResolutionCount = jest.fn((): Promise<number> =>
154
+ Promise.resolve(0),
155
+ );
156
+ const service = new OrganizationService(
157
+ {} as DataSource,
158
+ {} as Repository<OrgUnitEntity>,
159
+ { find: positionFind } as unknown as Repository<PositionEntity>,
160
+ { find: membershipFind } as unknown as Repository<MembershipEntity>,
161
+ {
162
+ count: managerResolutionCount,
163
+ } as unknown as Repository<ManagerResolutionEntity>,
164
+ );
165
+
166
+ await service.listPositions({
167
+ page: 3,
168
+ pageSize: 10,
169
+ searchText: '主管',
170
+ });
171
+ await service.listMemberships({
172
+ activeOnly: true,
173
+ orgUnitId: 'org-1',
174
+ page: 2,
175
+ pageSize: 20,
176
+ positionId: 'position-1',
177
+ });
178
+ await service.countManagerResolutions({
179
+ activeOnly: true,
180
+ scopeType: ManagerResolutionScopeTypeEnum.ORG_UNIT,
181
+ });
182
+
183
+ expect(positionFind).toHaveBeenCalledWith(
184
+ expect.objectContaining({
185
+ order: { code: 'ASC', level: 'DESC' },
186
+ skip: 20,
187
+ take: 10,
188
+ where: expect.arrayContaining([
189
+ expect.objectContaining({ code: expect.any(Object) }),
190
+ expect.objectContaining({ name: expect.any(Object) }),
191
+ ]),
192
+ }),
193
+ );
194
+ expect(membershipFind).toHaveBeenCalledWith(
195
+ expect.objectContaining({
196
+ order: {
197
+ effectiveFrom: 'DESC',
198
+ isPrimary: 'DESC',
199
+ memberId: 'ASC',
200
+ },
201
+ skip: 20,
202
+ take: 20,
203
+ where: expect.arrayContaining([
204
+ expect.objectContaining({
205
+ effectiveFrom: expect.any(Object),
206
+ orgUnitId: 'org-1',
207
+ positionId: 'position-1',
208
+ }),
209
+ ]),
210
+ }),
211
+ );
212
+ expect(managerResolutionCount).toHaveBeenCalledWith(
213
+ expect.objectContaining({
214
+ where: expect.arrayContaining([
215
+ expect.objectContaining({
216
+ effectiveFrom: expect.any(Object),
217
+ scopeType: ManagerResolutionScopeTypeEnum.ORG_UNIT,
218
+ }),
219
+ ]),
220
+ }),
221
+ );
222
+ });
223
+
224
+ it('commits org unit tree draft moves and recalculates descendant paths in one transaction', async (): Promise<void> => {
225
+ const orgUnits = [
226
+ createOrgUnitFixture({
227
+ code: 'ROOT',
228
+ id: '00000000-0000-4000-8000-000000000001',
229
+ name: 'Root',
230
+ path: 'org.n00000000_0000_4000_8000_000000000001',
231
+ }),
232
+ createOrgUnitFixture({
233
+ code: 'A',
234
+ id: '00000000-0000-4000-8000-000000000002',
235
+ name: 'Department A',
236
+ parentId: '00000000-0000-4000-8000-000000000001',
237
+ path: 'org.n00000000_0000_4000_8000_000000000001.n00000000_0000_4000_8000_000000000002',
238
+ }),
239
+ createOrgUnitFixture({
240
+ code: 'A1',
241
+ id: '00000000-0000-4000-8000-000000000003',
242
+ name: 'Team A1',
243
+ parentId: '00000000-0000-4000-8000-000000000002',
244
+ path: 'org.n00000000_0000_4000_8000_000000000001.n00000000_0000_4000_8000_000000000002.n00000000_0000_4000_8000_000000000003',
245
+ }),
246
+ createOrgUnitFixture({
247
+ code: 'B',
248
+ id: '00000000-0000-4000-8000-000000000004',
249
+ name: 'Department B',
250
+ parentId: '00000000-0000-4000-8000-000000000001',
251
+ path: 'org.n00000000_0000_4000_8000_000000000001.n00000000_0000_4000_8000_000000000004',
252
+ }),
253
+ ];
254
+ const orgUnitRepository = createOrgUnitTreeDraftRepository(orgUnits);
255
+ const manager = {
256
+ getRepository: jest.fn(() => orgUnitRepository),
257
+ };
258
+ const transaction = jest.fn(
259
+ (
260
+ callback: (value: typeof manager) => Promise<unknown>,
261
+ ): Promise<unknown> => callback(manager),
262
+ );
263
+ const service = new OrganizationService(
264
+ { transaction } as unknown as DataSource,
265
+ {} as Repository<OrgUnitEntity>,
266
+ {} as Repository<PositionEntity>,
267
+ {} as Repository<MembershipEntity>,
268
+ {} as Repository<ManagerResolutionEntity>,
269
+ );
270
+
271
+ const result = await service.commitOrgUnitTreeDraft({
272
+ moves: [
273
+ {
274
+ baseUpdatedAt: baseUpdatedAt.toISOString(),
275
+ id: '00000000-0000-4000-8000-000000000002',
276
+ parentId: '00000000-0000-4000-8000-000000000004',
277
+ },
278
+ ],
279
+ });
280
+
281
+ expect(transaction).toHaveBeenCalledTimes(1);
282
+ expect(orgUnitRepository.save).toHaveBeenCalledTimes(2);
283
+ expect(result.orgUnits.map((orgUnit) => orgUnit.id)).toEqual([
284
+ '00000000-0000-4000-8000-000000000002',
285
+ '00000000-0000-4000-8000-000000000003',
286
+ ]);
287
+ expect(orgUnits[1]?.parentId).toBe(
288
+ '00000000-0000-4000-8000-000000000004',
289
+ );
290
+ expect(orgUnits[1]?.path).toBe(
291
+ 'org.n00000000_0000_4000_8000_000000000001.n00000000_0000_4000_8000_000000000004.n00000000_0000_4000_8000_000000000002',
292
+ );
293
+ expect(orgUnits[2]?.path).toBe(
294
+ 'org.n00000000_0000_4000_8000_000000000001.n00000000_0000_4000_8000_000000000004.n00000000_0000_4000_8000_000000000002.n00000000_0000_4000_8000_000000000003',
295
+ );
296
+ });
297
+
298
+ it('rejects stale org unit tree draft moves', async (): Promise<void> => {
299
+ const orgUnits = [
300
+ createOrgUnitFixture({
301
+ id: '00000000-0000-4000-8000-000000000001',
302
+ updatedAt: new Date('2026-05-12T08:01:00.000Z'),
303
+ }),
304
+ ];
305
+ const orgUnitRepository = createOrgUnitTreeDraftRepository(orgUnits);
306
+ const manager = {
307
+ getRepository: jest.fn(() => orgUnitRepository),
308
+ };
309
+ const transaction = jest.fn(
310
+ (
311
+ callback: (value: typeof manager) => Promise<unknown>,
312
+ ): Promise<unknown> => callback(manager),
313
+ );
314
+ const service = new OrganizationService(
315
+ { transaction } as unknown as DataSource,
316
+ {} as Repository<OrgUnitEntity>,
317
+ {} as Repository<PositionEntity>,
318
+ {} as Repository<MembershipEntity>,
319
+ {} as Repository<ManagerResolutionEntity>,
320
+ );
321
+
322
+ await expect(
323
+ service.commitOrgUnitTreeDraft({
324
+ moves: [
325
+ {
326
+ baseUpdatedAt: baseUpdatedAt.toISOString(),
327
+ id: '00000000-0000-4000-8000-000000000001',
328
+ parentId: null,
329
+ },
330
+ ],
331
+ }),
332
+ ).rejects.toThrow('changed since this draft was based');
333
+ expect(orgUnitRepository.save).not.toHaveBeenCalled();
334
+ });
335
+
336
+ it('rejects org unit tree draft cycles before saving', async (): Promise<void> => {
337
+ const orgUnits = [
338
+ createOrgUnitFixture({
339
+ id: '00000000-0000-4000-8000-000000000001',
340
+ path: 'org.n00000000_0000_4000_8000_000000000001',
341
+ }),
342
+ createOrgUnitFixture({
343
+ id: '00000000-0000-4000-8000-000000000002',
344
+ path: 'org.n00000000_0000_4000_8000_000000000002',
345
+ }),
346
+ ];
347
+ const orgUnitRepository = createOrgUnitTreeDraftRepository(orgUnits);
348
+ const manager = {
349
+ getRepository: jest.fn(() => orgUnitRepository),
350
+ };
351
+ const transaction = jest.fn(
352
+ (
353
+ callback: (value: typeof manager) => Promise<unknown>,
354
+ ): Promise<unknown> => callback(manager),
355
+ );
356
+ const service = new OrganizationService(
357
+ { transaction } as unknown as DataSource,
358
+ {} as Repository<OrgUnitEntity>,
359
+ {} as Repository<PositionEntity>,
360
+ {} as Repository<MembershipEntity>,
361
+ {} as Repository<ManagerResolutionEntity>,
362
+ );
363
+
364
+ await expect(
365
+ service.commitOrgUnitTreeDraft({
366
+ moves: [
367
+ {
368
+ baseUpdatedAt: baseUpdatedAt.toISOString(),
369
+ id: '00000000-0000-4000-8000-000000000001',
370
+ parentId: '00000000-0000-4000-8000-000000000002',
371
+ },
372
+ {
373
+ baseUpdatedAt: baseUpdatedAt.toISOString(),
374
+ id: '00000000-0000-4000-8000-000000000002',
375
+ parentId: '00000000-0000-4000-8000-000000000001',
376
+ },
377
+ ],
378
+ }),
379
+ ).rejects.toThrow('cycle');
380
+ expect(orgUnitRepository.save).not.toHaveBeenCalled();
381
+ });
382
+
383
+ it('clears previous primary membership when creating a new primary membership', async (): Promise<void> => {
384
+ const orgUnitRepository = {
385
+ findOne: jest.fn<Promise<OrgUnitEntity | null>, []>(() =>
386
+ Promise.resolve({
387
+ code: 'FIN',
388
+ createdAt: new Date(),
389
+ deletedAt: null,
390
+ id: 'org-1',
391
+ metadata: {},
392
+ name: 'Finance',
393
+ parentId: null,
394
+ path: 'org.n_fin',
395
+ type: OrgUnitTypeEnum.DEPARTMENT,
396
+ updatedAt: new Date(),
397
+ }),
398
+ ),
399
+ } as unknown as Repository<OrgUnitEntity>;
400
+ const membershipRepository = {
401
+ create: jest.fn((input: Partial<MembershipEntity>): MembershipEntity => {
402
+ return {
403
+ createdAt: new Date(),
404
+ effectiveFrom: input.effectiveFrom ?? '2026-01-01',
405
+ effectiveTo: input.effectiveTo ?? null,
406
+ id: input.id ?? 'membership-1',
407
+ isPrimary: input.isPrimary ?? false,
408
+ memberId: input.memberId ?? 'member-1',
409
+ orgUnitId: input.orgUnitId ?? 'org-1',
410
+ positionId: input.positionId ?? null,
411
+ updatedAt: new Date(),
412
+ };
413
+ }),
414
+ save: jest.fn((entity: MembershipEntity): Promise<MembershipEntity> => {
415
+ return Promise.resolve(entity);
416
+ }),
417
+ update: jest.fn<Promise<{ readonly affected: number }>, []>(() =>
418
+ Promise.resolve({ affected: 1 }),
419
+ ),
420
+ } as unknown as Repository<MembershipEntity>;
421
+ const service = new OrganizationService(
422
+ {} as DataSource,
423
+ orgUnitRepository,
424
+ {} as Repository<PositionEntity>,
425
+ membershipRepository,
426
+ {} as Repository<ManagerResolutionEntity>,
427
+ );
428
+
429
+ const membership = await service.createMembership({
430
+ effectiveFrom: '2026-01-01',
431
+ effectiveTo: null,
432
+ isPrimary: true,
433
+ memberId: 'member-1',
434
+ orgUnitId: 'org-1',
435
+ positionId: null,
436
+ });
437
+
438
+ expect(membership.isPrimary).toBe(true);
439
+ expect(membershipRepository.update).toHaveBeenCalledWith(
440
+ { isPrimary: true, memberId: 'member-1' },
441
+ { isPrimary: false },
442
+ );
443
+ });
444
+
445
+ it('clears membership effectiveTo when update input explicitly passes null', async (): Promise<void> => {
446
+ const existingMembership = {
447
+ createdAt: new Date(),
448
+ effectiveFrom: '2026-01-01',
449
+ effectiveTo: '2026-12-31',
450
+ id: 'membership-1',
451
+ isPrimary: false,
452
+ memberId: 'member-1',
453
+ orgUnitId: 'org-1',
454
+ positionId: null,
455
+ updatedAt: new Date(),
456
+ };
457
+ const orgUnitRepository = {
458
+ findOne: jest.fn<Promise<OrgUnitEntity | null>, []>(() =>
459
+ Promise.resolve({
460
+ code: 'FIN',
461
+ createdAt: new Date(),
462
+ deletedAt: null,
463
+ id: 'org-1',
464
+ metadata: {},
465
+ name: 'Finance',
466
+ parentId: null,
467
+ path: 'org.n_fin',
468
+ type: OrgUnitTypeEnum.DEPARTMENT,
469
+ updatedAt: new Date(),
470
+ }),
471
+ ),
472
+ } as unknown as Repository<OrgUnitEntity>;
473
+ const membershipRepository = {
474
+ findOne: jest.fn<Promise<MembershipEntity | null>, []>(() =>
475
+ Promise.resolve(existingMembership),
476
+ ),
477
+ merge: jest.fn(
478
+ (
479
+ entity: MembershipEntity,
480
+ update: Partial<MembershipEntity>,
481
+ ): MembershipEntity => ({
482
+ ...entity,
483
+ ...update,
484
+ }),
485
+ ),
486
+ save: jest.fn((entity: MembershipEntity): Promise<MembershipEntity> => {
487
+ return Promise.resolve(entity);
488
+ }),
489
+ } as unknown as Repository<MembershipEntity>;
490
+ const service = new OrganizationService(
491
+ {} as DataSource,
492
+ orgUnitRepository,
493
+ {} as Repository<PositionEntity>,
494
+ membershipRepository,
495
+ {} as Repository<ManagerResolutionEntity>,
496
+ );
497
+
498
+ const membership = await service.updateMembership({
499
+ effectiveFrom: null,
500
+ effectiveTo: null,
501
+ id: 'membership-1',
502
+ isPrimary: null,
503
+ orgUnitId: null,
504
+ positionId: null,
505
+ });
506
+
507
+ expect(membership.effectiveTo).toBeNull();
508
+ expect(membershipRepository.save).toHaveBeenCalledWith(
509
+ expect.objectContaining({ effectiveTo: null }),
510
+ );
511
+ });
512
+
513
+ it('clears manager resolution effectiveTo when update input explicitly passes null', async (): Promise<void> => {
514
+ const existingResolution = {
515
+ createdAt: new Date(),
516
+ effectiveFrom: '2026-01-01',
517
+ effectiveTo: '2026-12-31',
518
+ id: 'resolution-1',
519
+ managerMemberId: 'manager-1',
520
+ priority: 10,
521
+ scopeId: 'member-1',
522
+ scopeType: ManagerResolutionScopeTypeEnum.MEMBER,
523
+ };
524
+ const managerResolutionRepository = {
525
+ findOne: jest.fn<Promise<ManagerResolutionEntity | null>, []>(() =>
526
+ Promise.resolve(existingResolution),
527
+ ),
528
+ merge: jest.fn(
529
+ (
530
+ entity: ManagerResolutionEntity,
531
+ update: Partial<ManagerResolutionEntity>,
532
+ ): ManagerResolutionEntity => ({
533
+ ...entity,
534
+ ...update,
535
+ }),
536
+ ),
537
+ save: jest.fn(
538
+ (entity: ManagerResolutionEntity): Promise<ManagerResolutionEntity> => {
539
+ return Promise.resolve(entity);
540
+ },
541
+ ),
542
+ } as unknown as Repository<ManagerResolutionEntity>;
543
+ const service = new OrganizationService(
544
+ {} as DataSource,
545
+ {} as Repository<OrgUnitEntity>,
546
+ {} as Repository<PositionEntity>,
547
+ {} as Repository<MembershipEntity>,
548
+ managerResolutionRepository,
549
+ );
550
+
551
+ const resolution = await service.updateManagerResolution({
552
+ effectiveFrom: null,
553
+ effectiveTo: null,
554
+ id: 'resolution-1',
555
+ managerMemberId: null,
556
+ priority: null,
557
+ scopeId: null,
558
+ scopeType: null,
559
+ });
560
+
561
+ expect(resolution.effectiveTo).toBeNull();
562
+ expect(managerResolutionRepository.save).toHaveBeenCalledWith(
563
+ expect.objectContaining({ effectiveTo: null }),
564
+ );
565
+ });
566
+
567
+ it('rejects a member-scoped manager resolution that points to the same member', async (): Promise<void> => {
568
+ const service = new OrganizationService(
569
+ {} as DataSource,
570
+ {} as Repository<OrgUnitEntity>,
571
+ {} as Repository<PositionEntity>,
572
+ {} as Repository<MembershipEntity>,
573
+ {} as Repository<ManagerResolutionEntity>,
574
+ );
575
+
576
+ await expect(
577
+ service.createManagerResolution({
578
+ effectiveFrom: '2026-01-01',
579
+ effectiveTo: null,
580
+ managerMemberId: 'member-1',
581
+ priority: 0,
582
+ scopeId: 'member-1',
583
+ scopeType: ManagerResolutionScopeTypeEnum.MEMBER,
584
+ }),
585
+ ).rejects.toThrow('Manager cannot be the scoped member');
586
+ });
587
+
588
+ it('rejects moving an org unit under its descendant', async (): Promise<void> => {
589
+ const existing = {
590
+ code: 'ROOT',
591
+ createdAt: new Date(),
592
+ deletedAt: null,
593
+ id: 'org-root',
594
+ metadata: {},
595
+ name: 'Root',
596
+ parentId: null,
597
+ path: 'org.n_root',
598
+ type: OrgUnitTypeEnum.COMPANY,
599
+ updatedAt: new Date(),
600
+ };
601
+ const descendant = {
602
+ ...existing,
603
+ code: 'FIN',
604
+ id: 'org-fin',
605
+ name: 'Finance',
606
+ parentId: 'org-root',
607
+ path: 'org.n_root.n_fin',
608
+ type: OrgUnitTypeEnum.DEPARTMENT,
609
+ };
610
+ const orgUnitRepository = {
611
+ findOne: jest.fn(
612
+ (options: {
613
+ readonly where: { readonly id?: string };
614
+ }): Promise<OrgUnitEntity | null> => {
615
+ if (options.where.id === 'org-root') {
616
+ return Promise.resolve(existing);
617
+ }
618
+
619
+ if (options.where.id === 'org-fin') {
620
+ return Promise.resolve(descendant);
621
+ }
622
+
623
+ return Promise.resolve(null);
624
+ },
625
+ ),
626
+ } as unknown as Repository<OrgUnitEntity>;
627
+ const service = new OrganizationService(
628
+ {} as DataSource,
629
+ orgUnitRepository,
630
+ {} as Repository<PositionEntity>,
631
+ {} as Repository<MembershipEntity>,
632
+ {} as Repository<ManagerResolutionEntity>,
633
+ );
634
+
635
+ await expect(
636
+ service.updateOrgUnit({
637
+ code: null,
638
+ id: 'org-root',
639
+ metadataJson: null,
640
+ name: null,
641
+ parentId: 'org-fin',
642
+ type: null,
643
+ }),
644
+ ).rejects.toThrow('descendant');
645
+ });
646
+
647
+ it('formats date-only values with the BPM business timezone', (): void => {
648
+ const service = new OrganizationService(
649
+ {} as DataSource,
650
+ {} as Repository<OrgUnitEntity>,
651
+ {} as Repository<PositionEntity>,
652
+ {} as Repository<MembershipEntity>,
653
+ {} as Repository<ManagerResolutionEntity>,
654
+ );
655
+ const formatter = service as unknown as {
656
+ readonly toDateOnly: (date: Date) => string;
657
+ };
658
+
659
+ expect(formatter.toDateOnly(new Date('2026-05-10T16:30:00.000Z'))).toBe(
660
+ '2026-05-11',
661
+ );
662
+ });
663
+ });
664
+
665
+ function createOrgUnitFixture(
666
+ value: Partial<OrgUnitEntity>,
667
+ ): OrgUnitEntity {
668
+ return {
669
+ code: value.code ?? 'ORG',
670
+ createdAt: value.createdAt ?? baseUpdatedAt,
671
+ deletedAt: value.deletedAt ?? null,
672
+ id: value.id ?? '00000000-0000-4000-8000-000000000001',
673
+ metadata: value.metadata ?? {},
674
+ name: value.name ?? 'Organization',
675
+ parentId: value.parentId ?? null,
676
+ path: value.path ?? 'org.n00000000_0000_4000_8000_000000000001',
677
+ type: value.type ?? OrgUnitTypeEnum.DEPARTMENT,
678
+ updatedAt: value.updatedAt ?? baseUpdatedAt,
679
+ };
680
+ }
681
+
682
+ function createOrgUnitTreeDraftRepository(
683
+ orgUnits: OrgUnitEntity[],
684
+ ): Repository<OrgUnitEntity> {
685
+ type OrgUnitTreeDraftQueryBuilder = Readonly<{
686
+ andWhere: (
687
+ condition: string,
688
+ nextParameters?: {
689
+ readonly id?: string;
690
+ readonly previousPath?: string;
691
+ },
692
+ ) => OrgUnitTreeDraftQueryBuilder;
693
+ getMany: () => Promise<OrgUnitEntity[]>;
694
+ where: (condition: string) => OrgUnitTreeDraftQueryBuilder;
695
+ }>;
696
+
697
+ const find = jest.fn((): Promise<OrgUnitEntity[]> =>
698
+ Promise.resolve(orgUnits),
699
+ );
700
+ const save = jest.fn((entity: OrgUnitEntity): Promise<OrgUnitEntity> => {
701
+ const index = orgUnits.findIndex((orgUnit) => orgUnit.id === entity.id);
702
+
703
+ if (index >= 0) {
704
+ orgUnits[index] = entity;
705
+ }
706
+
707
+ return Promise.resolve(entity);
708
+ });
709
+ const merge = jest.fn(
710
+ (
711
+ entity: OrgUnitEntity,
712
+ patch: Partial<OrgUnitEntity>,
713
+ ): OrgUnitEntity => Object.assign(entity, patch),
714
+ );
715
+ const createQueryBuilder = jest.fn((): OrgUnitTreeDraftQueryBuilder => {
716
+ const parameters: { id?: string; previousPath?: string } = {};
717
+ const queryBuilder: OrgUnitTreeDraftQueryBuilder = {
718
+ andWhere: jest.fn(
719
+ (
720
+ _condition: string,
721
+ nextParameters?: {
722
+ readonly id?: string;
723
+ readonly previousPath?: string;
724
+ },
725
+ ): OrgUnitTreeDraftQueryBuilder => {
726
+ Object.assign(parameters, nextParameters);
727
+
728
+ return queryBuilder;
729
+ },
730
+ ),
731
+ getMany: jest.fn((): Promise<OrgUnitEntity[]> => {
732
+ const previousPath = parameters.previousPath ?? '';
733
+ const id = parameters.id ?? '';
734
+
735
+ return Promise.resolve(
736
+ orgUnits.filter(
737
+ (orgUnit) =>
738
+ orgUnit.id !== id &&
739
+ orgUnit.path !== previousPath &&
740
+ orgUnit.path.startsWith(`${previousPath}.`),
741
+ ),
742
+ );
743
+ }),
744
+ where: jest.fn((condition: string): OrgUnitTreeDraftQueryBuilder => {
745
+ void condition;
746
+
747
+ return queryBuilder;
748
+ }),
749
+ };
750
+
751
+ return queryBuilder;
752
+ });
753
+
754
+ return {
755
+ createQueryBuilder,
756
+ find,
757
+ merge,
758
+ save,
759
+ } as unknown as Repository<OrgUnitEntity>;
760
+ }