@futdevpro/nts-dynamo 1.15.41 → 1.15.43

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 (323) hide show
  1. package/.c8rc.json +26 -26
  2. package/.copilot/patterns.json +7 -7
  3. package/.cursor/rules/__assistant_guide.mdc +30 -30
  4. package/.cursor/rules/_ag_backend-structure.mdc +85 -85
  5. package/.cursor/rules/_ag_backend.mdc +16 -16
  6. package/.cursor/rules/_ag_frontend-structure.mdc +86 -86
  7. package/.cursor/rules/_ag_frontend.mdc +39 -39
  8. package/.cursor/rules/_ag_import-rules.mdc +44 -44
  9. package/.cursor/rules/_ag_naming.mdc +115 -115
  10. package/.cursor/rules/_ag_should-be.mdc +6 -6
  11. package/.cursor/rules/ai_development_guide.md +60 -60
  12. package/.cursor/rules/cursor-rules.md +160 -160
  13. package/.cursor/rules/default-command.mdc +464 -464
  14. package/.cursor/rules/error_code_pattern.md +39 -39
  15. package/.cursor/rules/saved rule mcp server use.md +15 -15
  16. package/.dynamo/logs/cicd-pipeline/output.log +2596 -0
  17. package/.dynamo/logs/cicd-pipeline/status.json +321 -0
  18. package/.github/workflows/main.yml +432 -432
  19. package/.vscode/settings.json +10 -10
  20. package/HOWTO.md +15 -15
  21. package/LICENSE +21 -21
  22. package/__documentations/nts-integration-tests-2026-03-17.md +26 -26
  23. package/_specifications/BACKLOG.md +92 -92
  24. package/_specifications/TODO.md +15 -15
  25. package/_specifications/agent.md +138 -138
  26. package/build/_models/control-models/endpoint-params.control-model.d.ts.map +1 -1
  27. package/build/_models/control-models/endpoint-params.control-model.js +20 -4
  28. package/build/_models/control-models/endpoint-params.control-model.js.map +1 -1
  29. package/eslint.config.js +3 -3
  30. package/nodemon.json +24 -24
  31. package/package.json +2 -2
  32. package/pnpm-workspace.yaml +8 -8
  33. package/scripts/run-coverage-tests.js +28 -28
  34. package/spec/support/helpers/spec-reporter-loader.js +359 -359
  35. package/spec/support/helpers/ts-node-helper.js +93 -93
  36. package/spec/support/jasmine.coverage.json +24 -24
  37. package/spec/support/jasmine.json +24 -24
  38. package/src/_collections/archive.util.spec.ts +57 -57
  39. package/src/_collections/archive.util.ts +18 -18
  40. package/src/_collections/atlas-default-db-options.const.ts +9 -9
  41. package/src/_collections/default-fallback-cache-max-age.const.spec.ts +11 -11
  42. package/src/_collections/default-fallback-cache-max-age.const.ts +2 -2
  43. package/src/_collections/default-not-found-page.const.spec.ts +19 -19
  44. package/src/_collections/default-not-found-page.const.ts +22 -22
  45. package/src/_collections/default-socket-path.const.spec.ts +12 -12
  46. package/src/_collections/default-socket-path.const.ts +2 -2
  47. package/src/_collections/get-environment-settings.util.spec.ts +210 -210
  48. package/src/_collections/get-environment-settings.util.ts +48 -48
  49. package/src/_collections/sample.env +21 -21
  50. package/src/_collections/star.controller.spec.ts +224 -224
  51. package/src/_collections/star.controller.ts +129 -129
  52. package/src/_enums/data-model-type.enum.ts +14 -14
  53. package/src/_enums/data-service-function.enum.ts +24 -24
  54. package/src/_enums/predefined-data-types.enum.ts +16 -16
  55. package/src/_enums/route-security.enum.ts +12 -12
  56. package/src/_models/control-models/api-call-params.control-model.spec.ts +152 -152
  57. package/src/_models/control-models/api-call-params.control-model.ts +142 -142
  58. package/src/_models/control-models/app-ext-system-controls.control-model.spec.ts +52 -52
  59. package/src/_models/control-models/app-ext-system-controls.control-model.ts +9 -9
  60. package/src/_models/control-models/app-params.control-model.spec.ts +225 -225
  61. package/src/_models/control-models/app-params.control-model.ts +136 -136
  62. package/src/_models/control-models/app-system-controls.control-model.spec.ts +31 -31
  63. package/src/_models/control-models/app-system-controls.control-model.ts +9 -9
  64. package/src/_models/control-models/endpoint-params.control-model.spec.ts +578 -578
  65. package/src/_models/control-models/endpoint-params.control-model.ts +542 -526
  66. package/src/_models/control-models/http-settings.control-model.spec.ts +77 -77
  67. package/src/_models/control-models/http-settings.control-model.ts +37 -37
  68. package/src/_models/control-models/system-control.control-model.spec.ts +27 -27
  69. package/src/_models/control-models/system-control.control-model.ts +12 -12
  70. package/src/_models/interfaces/certification-settings.interface.ts +7 -7
  71. package/src/_models/interfaces/environment-settings.interface.ts +59 -59
  72. package/src/_models/interfaces/global-log-settings.interface.ts +144 -144
  73. package/src/_models/interfaces/global-service-settings.interface.ts +47 -47
  74. package/src/_models/interfaces/routing-module-settings.interface.ts +21 -21
  75. package/src/_models/interfaces/static-client-settings.interface.spec.ts +29 -29
  76. package/src/_models/interfaces/static-client-settings.interface.ts +28 -28
  77. package/src/_models/types/db-update.type.ts +100 -100
  78. package/src/_modules/ai/_models/ai-input-interfaces.ts +117 -117
  79. package/src/_modules/ai/_models/ai-test-generation-result.interface.ts +16 -16
  80. package/src/_modules/ai/_modules/anthropic/_services/aai-user-key.control-service.ts +138 -138
  81. package/src/_modules/ai/_modules/anthropic/index.ts +5 -5
  82. package/src/_modules/ai/_modules/document-ai/_collections/dai-chunking.util.spec.ts +242 -242
  83. package/src/_modules/ai/_modules/document-ai/_collections/dai-chunking.util.ts +639 -639
  84. package/src/_modules/ai/_modules/document-ai/_collections/dai-document.util.spec.ts +209 -209
  85. package/src/_modules/ai/_modules/document-ai/_collections/dai-document.util.ts +85 -85
  86. package/src/_modules/ai/_modules/document-ai/_enums/dai-compare-result-type.enum.ts +7 -7
  87. package/src/_modules/ai/_modules/document-ai/_models/data-models/dai-doc-chunk.data-model.ts +146 -146
  88. package/src/_modules/ai/_modules/document-ai/_models/data-models/dai-doc-page.data-model.ts +162 -162
  89. package/src/_modules/ai/_modules/document-ai/_models/data-models/dai-document.data-model.ts +99 -99
  90. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-doc-chunk-compare-result.interface.ts +18 -18
  91. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-doc-page-compare-result.interface.ts +19 -19
  92. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-document-compare-result.interface.ts +25 -25
  93. package/src/_modules/ai/_modules/document-ai/index.ts +28 -28
  94. package/src/_modules/ai/_modules/fdp-ai/_services/fdpai-user-key.control-service.ts +189 -189
  95. package/src/_modules/ai/_modules/fdp-ai/index.ts +5 -5
  96. package/src/_modules/ai/_modules/open-ai/_collections/oai-global-settings.const.ts +9 -9
  97. package/src/_modules/ai/_modules/open-ai/_collections/oai-llm-predefined-requests-hu.conts.ts +82 -82
  98. package/src/_modules/ai/_modules/open-ai/_collections/oai-llm-predefined-requests.conts.ts +75 -75
  99. package/src/_modules/ai/_modules/open-ai/_enums/oai-gpt-message-role.enum.ts +45 -45
  100. package/src/_modules/ai/_modules/open-ai/_models/interfaces/oai-global-settings.interface.ts +7 -7
  101. package/src/_modules/ai/_modules/open-ai/_models/interfaces/oai-gpt-message.interface.ts +7 -7
  102. package/src/_modules/ai/_modules/open-ai/_models/interfaces/oai-llm-predefined-requests.interface.ts +57 -57
  103. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-doc-chunk-data.service.ts +292 -292
  104. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-document.data-service.spec.ts +342 -342
  105. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.spec.ts +550 -550
  106. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.ts +630 -630
  107. package/src/_modules/ai/_modules/open-ai/_services/oai-embedding.control-service.spec.ts +332 -332
  108. package/src/_modules/ai/_modules/open-ai/_services/oai-llm-chat.service-base.spec.ts +462 -462
  109. package/src/_modules/ai/_modules/open-ai/_services/oai-llm-chat.service-base.ts +634 -634
  110. package/src/_modules/ai/_modules/open-ai/_services/oai-llm.service-base.spec.ts +489 -489
  111. package/src/_modules/ai/_modules/open-ai/_services/oai-llm.service-base.tools.spec.ts +173 -173
  112. package/src/_modules/ai/_modules/open-ai/_services/oai-llm.service-base.ts +1033 -1033
  113. package/src/_modules/ai/_modules/open-ai/_services/oai-user-key.control-service.ts +157 -157
  114. package/src/_modules/ai/_services/ai-embedding.service-base.spec.ts +98 -98
  115. package/src/_modules/ai/_services/ai-embedding.service-base.ts +48 -48
  116. package/src/_modules/ai/_services/ai-llm-chat.service-base.spec.ts +229 -229
  117. package/src/_modules/ai/_services/ai-llm-chat.service-base.ts +68 -68
  118. package/src/_modules/ai/_services/ai-llm.service-base.spec.ts +250 -250
  119. package/src/_modules/ai/_services/ai-llm.service-base.ts +519 -519
  120. package/src/_modules/ai/_services/ai-provider.service-base.spec.ts +158 -158
  121. package/src/_modules/ai/_services/ai-user-key.service-base.ts +59 -59
  122. package/src/_modules/ai/index.ts +13 -13
  123. package/src/_modules/assistant/_collections/ass-global-settings.const.ts +13 -13
  124. package/src/_modules/assistant/_collections/ass.util.spec.ts +176 -176
  125. package/src/_modules/assistant/_collections/ass.util.ts +50 -50
  126. package/src/_modules/assistant/_models/ass-global-settings.interface.ts +15 -15
  127. package/src/_modules/assistant/_services/ass-io.control-service.spec.ts +140 -140
  128. package/src/_modules/assistant/_services/ass-main.control-service.spec.ts +192 -192
  129. package/src/_modules/assistant/_services/ass-main.control-service.ts +107 -107
  130. package/src/_modules/bot/_collections/bot-default-commands.const.ts +12 -12
  131. package/src/_modules/bot/_collections/bot-global-settings.const.ts +39 -39
  132. package/src/_modules/bot/_models/bot-channel-wrapper.interface.ts +62 -62
  133. package/src/_modules/bot/_models/bot-command.interface.ts +8 -8
  134. package/src/_modules/bot/_models/bot-global-settings.interface.ts +96 -96
  135. package/src/_modules/bot/_models/bot-last-mention-date.interface.ts +6 -6
  136. package/src/_modules/bot/_models/bot-last-message-date.interface.ts +5 -5
  137. package/src/_modules/bot/_models/bot-user-wrapper.interface.ts +41 -41
  138. package/src/_modules/bot/_modules/discord-bot/_models/dib-platform.types.ts +9 -9
  139. package/src/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.spec.ts +431 -431
  140. package/src/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.spec.ts +160 -160
  141. package/src/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.ts +55 -55
  142. package/src/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.ts +15 -15
  143. package/src/_modules/bot/_modules/dynamo-bot/_services/dyb-messaging-provider.control-service.spec.ts +374 -374
  144. package/src/_modules/bot/_modules/dynamo-bot/_services/dyb-messaging-provider.control-service.ts +447 -447
  145. package/src/_modules/bot/_modules/dynamo-bot/index.ts +15 -15
  146. package/src/_modules/bot/_modules/slack-bot/_models/slb-platform.types.ts +9 -9
  147. package/src/_modules/bot/_modules/slack-bot/_services/slb-messaging-provider.control-service.spec.ts +344 -344
  148. package/src/_modules/bot/_modules/slack-bot/_services/slb-messaging-provider.control-service.ts +197 -197
  149. package/src/_modules/bot/_modules/teams-bot/_models/teb-platform.types.ts +9 -9
  150. package/src/_modules/bot/_modules/teams-bot/_services/teb-messaging-provider.control-service.spec.ts +345 -345
  151. package/src/_modules/bot/_modules/teams-bot/_services/teb-messaging-provider.control-service.ts +197 -197
  152. package/src/_modules/bot/_services/bot-commands.control-service.spec.ts +116 -116
  153. package/src/_modules/bot/_services/bot-io.control-service.spec.ts +285 -285
  154. package/src/_modules/bot/_services/bot-main.control-service.spec.ts +208 -208
  155. package/src/_modules/bot/_services/bot-messaging-provider.service-base.spec.ts +349 -349
  156. package/src/_modules/bot/_services/bot-routines.control-service.spec.ts +111 -111
  157. package/src/_modules/custom-data/custom-data.controller.spec.ts +49 -49
  158. package/src/_modules/custom-data/custom-data.controller.ts +67 -67
  159. package/src/_modules/custom-data/custom-data.data-service.spec.ts +54 -54
  160. package/src/_modules/custom-data/custom-data.data-service.ts +21 -21
  161. package/src/_modules/custom-data/get-custom-data-routing-module.util.spec.ts +28 -28
  162. package/src/_modules/custom-data/get-custom-data-routing-module.util.ts +24 -24
  163. package/src/_modules/custom-data/index.ts +9 -9
  164. package/src/_modules/defaults/_collections/default-endpoints.util.ts +487 -487
  165. package/src/_modules/defaults/_models/default-user.data-model.ts +72 -72
  166. package/src/_modules/defaults/_services/default-auth.service.spec.ts +269 -269
  167. package/src/_modules/defaults/_services/default-auth.service.ts +177 -177
  168. package/src/_modules/defaults/_services/default-socket-events.service.spec.ts +42 -42
  169. package/src/_modules/defaults/_services/default-socket-events.service.ts +61 -61
  170. package/src/_modules/defaults/_services/default-user.data-service.spec.ts +187 -187
  171. package/src/_modules/defaults/_services/default-user.data-service.ts +98 -98
  172. package/src/_modules/defaults/index.ts +17 -17
  173. package/src/_modules/discord-assistant/_collections/dias-global-settings.const.ts +19 -19
  174. package/src/_modules/discord-assistant/_collections/dias.util.spec.ts +366 -366
  175. package/src/_modules/discord-assistant/_collections/dias.util.ts +132 -132
  176. package/src/_modules/discord-assistant/_models/dias-global-settings.interface.ts +19 -19
  177. package/src/_modules/discord-assistant/_models/dias-knowledge.data-model.ts +52 -52
  178. package/src/_modules/discord-assistant/_services/dias-chunk.data-service.ts +177 -177
  179. package/src/_modules/discord-assistant/_services/dias-io.control-service.spec.ts +108 -108
  180. package/src/_modules/discord-assistant/_services/dias-io.control-service.ts +69 -69
  181. package/src/_modules/discord-assistant/_services/dias-main.control-service.spec.ts +22 -22
  182. package/src/_modules/discord-assistant/_services/dias-main.control-service.ts +27 -27
  183. package/src/_modules/discord-assistant/_services/dias.service-base.spec.ts +195 -195
  184. package/src/_modules/discord-assistant/_services/dias.service-base.ts +76 -76
  185. package/src/_modules/discord-assistant/index.ts +38 -38
  186. package/src/_modules/discord-assistant-voiced/_services/dias-discord-bot.control-service.spec.ts +34 -34
  187. package/src/_modules/discord-assistant-voiced/_services/dias-discord-bot.control-service.ts +11 -11
  188. package/src/_modules/discord-assistant-voiced/index.ts +36 -36
  189. package/src/_modules/discord-bot/_collections/dibo-default-commands.const.ts +16 -16
  190. package/src/_modules/discord-bot/_collections/dibo-global-settings.conts.ts +55 -55
  191. package/src/_modules/discord-bot/_collections/dibo-operations.util.spec.ts +214 -214
  192. package/src/_modules/discord-bot/_collections/dibo-operations.util.ts +387 -387
  193. package/src/_modules/discord-bot/_models/dibo-command.interface.ts +12 -12
  194. package/src/_modules/discord-bot/_models/dibo-global-settings.interface.ts +98 -98
  195. package/src/_modules/discord-bot/_models/dibo-last-mention-date.inteface.ts +7 -7
  196. package/src/_modules/discord-bot/_models/dibo-last-message-date.interface.ts +6 -6
  197. package/src/_modules/discord-bot/_services/dibo-commands.control-service.spec.ts +154 -154
  198. package/src/_modules/discord-bot/_services/dibo-commands.control-service.ts +153 -153
  199. package/src/_modules/discord-bot/_services/dibo-io.control-service.spec.ts +264 -264
  200. package/src/_modules/discord-bot/_services/dibo-io.control-service.ts +306 -306
  201. package/src/_modules/discord-bot/_services/dibo-main.control-service.spec.ts +408 -408
  202. package/src/_modules/discord-bot/_services/dibo-main.control-service.ts +487 -487
  203. package/src/_modules/discord-bot/_services/dibo-routines.control-service.spec.ts +105 -105
  204. package/src/_modules/discord-bot/index.ts +36 -36
  205. package/src/_modules/local-vector-search/_enums/lvs-search-mode.enum.ts +35 -35
  206. package/src/_modules/local-vector-search/_models/lvs-search-result.interface.ts +17 -17
  207. package/src/_modules/local-vector-search/_services/lvs-doc-chunk-data.service.spec.ts +418 -418
  208. package/src/_modules/local-vector-search/_services/lvs-doc-chunk-data.service.ts +276 -276
  209. package/src/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.spec.ts +480 -480
  210. package/src/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.ts +416 -416
  211. package/src/_modules/local-vector-search/_services/lvs-vector-pool.control-service.spec.ts +393 -393
  212. package/src/_modules/local-vector-search/_services/lvs-vector-pool.control-service.ts +220 -220
  213. package/src/_modules/local-vector-search/index.ts +11 -11
  214. package/src/_modules/messaging/README.md +354 -354
  215. package/src/_modules/messaging/_collections/get-messaging-routing-module.util.ts +26 -26
  216. package/src/_modules/messaging/_collections/msg-global-settings.const.ts +22 -22
  217. package/src/_modules/messaging/_collections/msg.util.spec.ts +226 -226
  218. package/src/_modules/messaging/_models/msg-global-settings.interface.ts +37 -37
  219. package/src/_modules/messaging/_services/msg-conversation.data-service.ts +146 -146
  220. package/src/_modules/messaging/_services/msg-events.service.spec.ts +219 -219
  221. package/src/_modules/messaging/_services/msg-events.service.ts +267 -267
  222. package/src/_modules/messaging/_services/msg-integration.control-service.ts +179 -179
  223. package/src/_modules/messaging/_services/msg-main.control-service.spec.ts +147 -147
  224. package/src/_modules/messaging/_services/msg-main.control-service.ts +571 -571
  225. package/src/_modules/messaging/_services/msg-message.data-service.ts +129 -129
  226. package/src/_modules/messaging/_services/msg.controller.spec.ts +201 -201
  227. package/src/_modules/messaging/index.ts +30 -30
  228. package/src/_modules/mock/app-extended-server.mock.ts +201 -201
  229. package/src/_modules/mock/app-integration-test.mock.ts +51 -51
  230. package/src/_modules/mock/app-params.mock.spec.ts +21 -21
  231. package/src/_modules/mock/app-params.mock.ts +9 -9
  232. package/src/_modules/mock/app-server.mock.ts +188 -188
  233. package/src/_modules/mock/auth-service.mock.spec.ts +47 -47
  234. package/src/_modules/mock/auth-service.mock.ts +28 -28
  235. package/src/_modules/mock/controller.mock.spec.ts +26 -26
  236. package/src/_modules/mock/controller.mock.ts +16 -16
  237. package/src/_modules/mock/data-model.mock.spec.ts +111 -111
  238. package/src/_modules/mock/data-model.mock.ts +82 -82
  239. package/src/_modules/mock/email-service-collection.mock.spec.ts +24 -24
  240. package/src/_modules/mock/email-service-collection.mock.ts +15 -15
  241. package/src/_modules/mock/email-service.mock.spec.ts +17 -17
  242. package/src/_modules/mock/email-service.mock.ts +20 -20
  243. package/src/_modules/mock/email-template.mock.html +14 -14
  244. package/src/_modules/mock/endpoint.mock.ts +91 -91
  245. package/src/_modules/mock/socket-client.mock.spec.ts +40 -40
  246. package/src/_modules/mock/socket-client.mock.ts +45 -45
  247. package/src/_modules/mock/socket-server.mock.spec.ts +44 -44
  248. package/src/_modules/mock/socket-server.mock.ts +46 -46
  249. package/src/_modules/oauth2/_routes/oauth2.controller.spec.ts +107 -107
  250. package/src/_modules/oauth2/_routes/oauth2.controller.ts +98 -98
  251. package/src/_modules/oauth2/_services/oauth2.auth-service.spec.ts +254 -254
  252. package/src/_modules/oauth2/_services/oauth2.auth-service.ts +232 -232
  253. package/src/_modules/oauth2/_services/oauth2.control-service.spec.ts +585 -585
  254. package/src/_modules/oauth2/_services/oauth2.control-service.ts +653 -653
  255. package/src/_modules/oauth2/index.ts +17 -17
  256. package/src/_modules/server/errors/errors.control-service.spec.ts +238 -238
  257. package/src/_modules/server/errors/errors.control-service.ts +85 -85
  258. package/src/_modules/server/errors/errors.controller.spec.ts +241 -241
  259. package/src/_modules/server/errors/errors.controller.ts +431 -431
  260. package/src/_modules/server/errors/errors.data-service.spec.ts +355 -355
  261. package/src/_modules/server/index.ts +30 -30
  262. package/src/_modules/server/server-status/server-status-snapshot.control-service.spec.ts +70 -70
  263. package/src/_modules/server/server-status/server-status-snapshot.control-service.ts +17 -17
  264. package/src/_modules/server/server-status/server-status-snapshot.data-service.spec.ts +77 -77
  265. package/src/_modules/server/server-status/server-status-snapshot.data-service.ts +37 -37
  266. package/src/_modules/server/server-status/server-status.control-service.spec.ts +524 -524
  267. package/src/_modules/server/server-status/server-status.control-service.ts +336 -336
  268. package/src/_modules/server/server-status/server-status.controller.spec.ts +162 -162
  269. package/src/_modules/server/server-status/server-status.controller.ts +131 -131
  270. package/src/_modules/socket/_enums/socket-security.enum.ts +11 -11
  271. package/src/_modules/socket/_models/socket-client-service-params.control-model.spec.ts +32 -32
  272. package/src/_modules/socket/_models/socket-client-service-params.control-model.ts +22 -22
  273. package/src/_modules/socket/_models/socket-presence.control-model.spec.ts +164 -164
  274. package/src/_modules/socket/_models/socket-presence.control-model.ts +210 -210
  275. package/src/_modules/socket/_models/socket-server-service-params.control-model.spec.ts +46 -46
  276. package/src/_modules/socket/_models/socket-server-service-params.control-model.ts +22 -22
  277. package/src/_modules/socket/_services/socket-client.service.spec.ts +15 -15
  278. package/src/_modules/socket/_services/socket-client.service.ts +260 -260
  279. package/src/_modules/socket/_services/socket-server.service.spec.ts +11 -11
  280. package/src/_modules/socket/app-extended.integration.spec.ts +85 -85
  281. package/src/_modules/socket/app-extended.server.ts +630 -630
  282. package/src/_modules/socket/index.ts +42 -42
  283. package/src/_modules/test/get-test-routing-module.util.spec.ts +28 -28
  284. package/src/_modules/test/get-test-routing-module.util.ts +23 -23
  285. package/src/_modules/test/index.ts +11 -11
  286. package/src/_modules/test/test.controller.spec.ts +72 -72
  287. package/src/_modules/test/test.controller.ts +115 -115
  288. package/src/_modules/usage/get-usage-routing-module.util.ts +22 -22
  289. package/src/_modules/usage/index.ts +15 -15
  290. package/src/_modules/usage/usage.controller.spec.ts +81 -81
  291. package/src/_modules/usage/usage.controller.ts +126 -126
  292. package/src/_modules/usage/usage.data-service.spec.ts +332 -332
  293. package/src/_modules/usage/usage.data-service.ts +185 -185
  294. package/src/_services/base/api.service-base.spec.ts +125 -125
  295. package/src/_services/base/api.service-base.ts +74 -74
  296. package/src/_services/base/archive-data.service.spec.ts +196 -196
  297. package/src/_services/base/archive-data.service.ts +216 -216
  298. package/src/_services/base/data.service.spec.ts +674 -674
  299. package/src/_services/base/data.service.ts +2719 -2719
  300. package/src/_services/base/db.service.spec.ts +73 -73
  301. package/src/_services/base/db.service.ts +1575 -1575
  302. package/src/_services/base/singleton.service-base.spec.ts +28 -28
  303. package/src/_services/base/singleton.service-base.ts +24 -24
  304. package/src/_services/base/singleton.service.spec.ts +114 -114
  305. package/src/_services/base/singleton.service.ts +38 -38
  306. package/src/_services/core/api.service.spec.ts +140 -140
  307. package/src/_services/core/auth.service.spec.ts +159 -159
  308. package/src/_services/core/auth.service.ts +174 -174
  309. package/src/_services/core/email.service.spec.ts +85 -85
  310. package/src/_services/core/email.service.ts +742 -742
  311. package/src/_services/core/global.service.spec.ts +275 -275
  312. package/src/_services/core/global.service.ts +461 -461
  313. package/src/_services/core/service-collection.service.spec.ts +46 -46
  314. package/src/_services/core/service-collection.service.ts +6 -6
  315. package/src/_services/route/controller.service.spec.ts +53 -53
  316. package/src/_services/route/controller.service.ts +148 -148
  317. package/src/_services/route/routing-module.service.spec.ts +98 -98
  318. package/src/_services/route/routing-module.service.ts +330 -330
  319. package/src/_services/shared.static-service.spec.ts +99 -99
  320. package/src/_services/shared.static-service.ts +78 -78
  321. package/src/index.ts +95 -95
  322. package/tsconfig.app.json +12 -12
  323. package/tsconfig.json +42 -42
@@ -0,0 +1,2596 @@
1
+ === CICD Pipeline | started: 2026-06-05T12:48:55.478Z | PID: 643 ===
2
+ [cdp] ▶ discord-start (started: 12:48:55 PM)
3
+ Processing Discord start notification command...
4
+ Starting Discord start notification process...
5
+ Discord start notification sent successfully
6
+ Discord start notification command completed successfully
7
+ [cdp] ✓ discord-start (2.3s)
8
+ [cdp] ▶ pre-flight (started: 12:48:58 PM)
9
+ Pre-flight check passed: all required variables are set
10
+ [cdp] ✓ pre-flight (0.1s)
11
+ [cdp] ▶ install (started: 12:48:59 PM)
12
+ Progress: resolved 1, reused 0, downloaded 0, added 0
13
+ Progress: resolved 6, reused 1, downloaded 0, added 0
14
+ Progress: resolved 29, reused 18, downloaded 0, added 0
15
+ Progress: resolved 37, reused 21, downloaded 0, added 0
16
+ Progress: resolved 109, reused 24, downloaded 0, added 0
17
+ Progress: resolved 119, reused 30, downloaded 0, added 0
18
+ Progress: resolved 124, reused 30, downloaded 0, added 0
19
+ Progress: resolved 138, reused 31, downloaded 0, added 0
20
+ Progress: resolved 197, reused 45, downloaded 0, added 0
21
+ Progress: resolved 262, reused 68, downloaded 0, added 0
22
+ Progress: resolved 316, reused 72, downloaded 0, added 0
23
+ Progress: resolved 400, reused 86, downloaded 0, added 0
24
+ Progress: resolved 482, reused 89, downloaded 0, added 0
25
+ Progress: resolved 517, reused 95, downloaded 0, added 0
26
+ Progress: resolved 522, reused 101, downloaded 0, added 0
27
+ Progress: resolved 528, reused 104, downloaded 0, added 0
28
+  WARN  10 deprecated subdependencies found: are-we-there-yet@2.0.0, gauge@3.0.2, glob@10.5.0, glob@7.2.3, inflight@1.0.6, node-domexception@1.0.0, npmlog@5.0.1, rimraf@2.7.1, rimraf@3.0.2, tar@6.2.1
29
+ Packages: +528
30
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
+ Progress: resolved 528, reused 106, downloaded 0, added 0
32
+ Progress: resolved 528, reused 114, downloaded 0, added 0
33
+ Progress: resolved 528, reused 119, downloaded 0, added 0
34
+ Progress: resolved 528, reused 140, downloaded 0, added 0
35
+ Progress: resolved 528, reused 150, downloaded 0, added 0
36
+ Progress: resolved 528, reused 167, downloaded 0, added 0
37
+ Progress: resolved 528, reused 193, downloaded 0, added 0
38
+ Progress: resolved 528, reused 231, downloaded 0, added 0
39
+ Progress: resolved 528, reused 246, downloaded 0, added 0
40
+ Progress: resolved 528, reused 286, downloaded 0, added 0
41
+ Progress: resolved 528, reused 299, downloaded 0, added 0
42
+ Progress: resolved 528, reused 359, downloaded 0, added 0
43
+ Progress: resolved 528, reused 386, downloaded 0, added 0
44
+ Progress: resolved 528, reused 443, downloaded 0, added 0
45
+ Progress: resolved 528, reused 479, downloaded 0, added 0
46
+ Progress: resolved 528, reused 495, downloaded 0, added 0
47
+ Progress: resolved 528, reused 507, downloaded 0, added 0
48
+ Progress: resolved 528, reused 517, downloaded 0, added 0
49
+ Progress: resolved 528, reused 519, downloaded 0, added 18
50
+ Progress: resolved 528, reused 520, downloaded 0, added 56
51
+ Progress: resolved 528, reused 521, downloaded 0, added 79
52
+ Progress: resolved 528, reused 522, downloaded 0, added 112
53
+ Progress: resolved 528, reused 523, downloaded 0, added 133
54
+ Progress: resolved 528, reused 523, downloaded 0, added 147
55
+ Progress: resolved 528, reused 524, downloaded 0, added 187
56
+ Progress: resolved 528, reused 524, downloaded 0, added 248
57
+ Progress: resolved 528, reused 524, downloaded 0, added 297
58
+ Progress: resolved 528, reused 524, downloaded 0, added 363
59
+ Progress: resolved 528, reused 524, downloaded 0, added 415
60
+ Progress: resolved 528, reused 524, downloaded 0, added 502
61
+ Progress: resolved 528, reused 526, downloaded 0, added 520
62
+ Progress: resolved 528, reused 528, downloaded 0, added 521
63
+ Progress: resolved 528, reused 528, downloaded 0, added 522
64
+ Progress: resolved 528, reused 528, downloaded 0, added 523
65
+ Progress: resolved 528, reused 528, downloaded 0, added 525
66
+ Progress: resolved 528, reused 528, downloaded 0, added 526
67
+ Progress: resolved 528, reused 528, downloaded 0, added 527
68
+ Progress: resolved 528, reused 528, downloaded 0, added 528, done
69
+ . prepare$ husky
70
+ . prepare: Done
71
+  WARN  Issues with peer dependencies found
72
+ .
73
+ └─┬ @futdevpro/dynamo-eslint 1.15.12
74
+ ├── ✕ unmet peer @typescript-eslint/eslint-plugin@8.0.0: found 8.60.1
75
+ ├── ✕ unmet peer @typescript-eslint/parser@8.0.0: found 8.60.1
76
+ ├── ✕ unmet peer eslint@9.0.0: found 9.39.4
77
+ ├── ✕ unmet peer eslint-plugin-import@2.29.0: found 2.32.0
78
+ ├── ✕ unmet peer eslint-plugin-jsdoc@48.0.0: found 48.11.0
79
+ ├── ✕ unmet peer eslint-plugin-prettier@5.1.3: found 5.5.6
80
+ └── ✕ unmet peer prettier@3.3.0: found 3.8.3
81
+
82
+ dependencies:
83
+ + @futdevpro/fsm-dynamo 1.15.21
84
+ + @types/express 4.17.21 (5.0.6 is available)
85
+ + @types/geoip-lite 1.4.4
86
+ + @types/node 24.1.0 (25.9.1 is available)
87
+ + axios 1.8.4 (1.17.0 is available)
88
+ + body-parser 1.20.5 (2.2.2 is available)
89
+ + dotenv 16.5.0 (17.4.2 is available)
90
+ + express 4.21.2 (5.2.1 is available)
91
+ + geoip-lite 1.4.10 (2.0.2 is available)
92
+ + mongoose 8.10.2 (9.6.3 is available)
93
+ + nodemailer 6.9.16 (8.0.10 is available)
94
+ + rxjs 7.8.1 (7.8.2 is available)
95
+ + ts-node 10.9.2
96
+
97
+ devDependencies:
98
+ + @anthropic-ai/sdk 0.39.0 (0.100.1 is available)
99
+ + @discordjs/opus 0.10.0
100
+ + @discordjs/voice 0.18.0 (0.19.2 is available)
101
+ + @futdevpro/dynamo-eslint 1.15.12
102
+ + @types/jasmine 4.3.6 (6.0.0 is available)
103
+ + @typescript-eslint/eslint-plugin 8.60.1
104
+ + @typescript-eslint/parser 8.60.1
105
+ + crypto-js 4.2.0
106
+ + discord.js 14.24.2 (14.26.4 is available)
107
+ + eslint 9.39.4 (10.4.1 is available)
108
+ + eslint-plugin-import 2.32.0
109
+ + eslint-plugin-jsdoc 48.11.0 (63.0.1 is available)
110
+ + eslint-plugin-max-params-no-constructor 0.0.4
111
+ + eslint-plugin-prettier 5.5.6
112
+ + eslint-plugin-unused-imports 4.4.1
113
+ + husky 9.1.7
114
+ + jasmine 5.10.0 (6.2.0 is available)
115
+ + jasmine-spec-reporter 7.0.0
116
+ + jasmine-ts 0.4.0
117
+ + openai 5.23.2 (6.42.0 is available)
118
+ + prettier 3.8.3
119
+ + socket.io 4.8.3
120
+ + socket.io-client 4.8.3
121
+ + tslib 2.6.3 (2.8.1 is available)
122
+ + typescript 5.5.4 (6.0.3 is available)
123
+
124
+ Done in 1m 0.9s using pnpm v10.34.1
125
+ [cdp] ✓ install (61.1s)
126
+ [cdp] ▶ check-dev-leftovers (started: 12:50:01 PM)
127
+ Checking dev leftovers... (--fix mode) (--patch-only safety gate)
128
+ Processing check: TSCONFIG_PATHS in .
129
+ Processing check: PACKAGE_VERSIONS in .
130
+ ✓ .: compilerOptions.paths is either empty or not defined. Which is fine.
131
+ ✅ @futdevpro/fsm-dynamo is latest (1.15.21)
132
+ All dev leftover checks completed successfully.
133
+ [cdp] ✓ check-dev-leftovers (2.7s)
134
+ [cdp] ▶ build (started: 12:50:05 PM)
135
+ [cdp] ✓ build (22.2s)
136
+ [cdp] ▶ test (started: 12:50:28 PM)
137
+ DyFM_DataModel_Params.constructor: dataName should be in snake_case in "default-user RENAME OR EXTEND THIS DONT USE AS IS" model.For future compatibility.
138
+ stackLocation: /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/defaults/_models/default-user.data-model.js:28:40
139
+ 
140
+ ----------
141
+ DYNAMO WARNING:
142
+ vectorizeUseIndex is required if vectorizedFrom is set at "contentVectorized" in "test-data" model. (It will be set to "contentVectorized" by default)
143
+ stackLocation: Error
144
+
145
+ ---------- 
146
+ Vectorized from property "content" is not a number[] property in "test-data" model.
147
+ stackLocation: /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.spec.js:15:24
148
+ 
149
+ DyFM_DataModel_Params.constructor: dataName should be in snake_case in "test-data" model.For future compatibility.
150
+ stackLocation: /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.spec.js:15:24
151
+ 
152
+ DYNAMO WARNING:
153
+ required is recommended to be set if dependency is set at "userId" in "test_data" model.
154
+ (it is required or it is not a dependency)
155
+ It will be set to true by while you are not setting it.
156
+ stackLocation: Error
157
+ 
158
+ Randomized with seed 65195
159
+ Started
160
+ .............................................
161
+ ||||||||||
162
+
163
+ Failed to search messages Error: Failed to fetch
164
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.spec.js:86:106)
165
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
166
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
167
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
168
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
169
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
170
+
171
+ ||||||||||
172
+ 
173
+ ....
174
+ ||||||||||
175
+
176
+ Failed to get conversation stats Error: Failed to fetch
177
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.spec.js:42:106)
178
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
179
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
180
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
181
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
182
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
183
+
184
+ ||||||||||
185
+ 
186
+ .........................Token revocation failed DyFM_Error {
187
+ __created: 2026-06-05T12:50:52.424Z,
188
+ __createdBy: 'OAuth2ControlService',
189
+ __lastModified: 2026-06-05T12:50:52.424Z,
190
+ __lastModifiedBy: 'OAuth2ControlService',
191
+ __v: 0,
192
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
193
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HR0',
194
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HR0' ],
195
+ _message: 'Missing token',
196
+ _messages: [ 'Missing token' ],
197
+ __userMessage: 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR0',
198
+ __userMessages: [ 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR0' ],
199
+ ___handled: false,
200
+ ___status: 400,
201
+ ___issuer: 'MISSING-ISSUER',
202
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
203
+ ___issuerService: 'OAuth2ControlService',
204
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
205
+ error: Error
206
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23)
207
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:401:39)
208
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
209
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
210
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
211
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
212
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
213
+ errors: [
214
+ Error
215
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23)
216
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:401:39)
217
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
218
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
219
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
220
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
221
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
222
+ ],
223
+ stack: 'Error\n' +
224
+ ' at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23)\n' +
225
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:401:39)\n' +
226
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
227
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
228
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
229
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
230
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
231
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23',
232
+ level: 'error',
233
+ additionalContent: {},
234
+ confidentialContent: {}
235
+ } 
236
+ .Token revocation failed DyFM_Error {
237
+ __created: 2026-06-05T12:50:52.430Z,
238
+ __createdBy: 'OAuth2ControlService',
239
+ __lastModified: 2026-06-05T12:50:52.430Z,
240
+ __lastModifiedBy: 'OAuth2ControlService',
241
+ __v: 0,
242
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
243
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HR1',
244
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HR1' ],
245
+ _message: 'Token not found or already revoked',
246
+ _messages: [ 'Token not found or already revoked' ],
247
+ __userMessage: 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR1',
248
+ __userMessages: [ 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR1' ],
249
+ ___handled: false,
250
+ ___status: 400,
251
+ ___issuer: 'MISSING-ISSUER',
252
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
253
+ ___issuerService: 'OAuth2ControlService',
254
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
255
+ error: Error
256
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23)
257
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:407:39)
258
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
259
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
260
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
261
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
262
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
263
+ errors: [
264
+ Error
265
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23)
266
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:407:39)
267
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
268
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
269
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
270
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
271
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
272
+ ],
273
+ stack: 'Error\n' +
274
+ ' at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23)\n' +
275
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:407:39)\n' +
276
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
277
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
278
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
279
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
280
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
281
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23',
282
+ level: 'error',
283
+ additionalContent: {},
284
+ confidentialContent: {}
285
+ } 
286
+ .Token request failed DyFM_Error {
287
+ __created: 2026-06-05T12:50:52.432Z,
288
+ __createdBy: 'OAuth2ControlService',
289
+ __lastModified: 2026-06-05T12:50:52.432Z,
290
+ __lastModifiedBy: 'OAuth2ControlService',
291
+ __v: 0,
292
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
293
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT1',
294
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT1' ],
295
+ _message: 'Missing authorization code',
296
+ _messages: [ 'Missing authorization code' ],
297
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT1',
298
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT1' ],
299
+ ___handled: false,
300
+ ___status: 400,
301
+ ___issuer: 'MISSING-ISSUER',
302
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
303
+ ___issuerService: 'OAuth2ControlService',
304
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
305
+ error: Error
306
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31)
307
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:256:39)
308
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
309
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
310
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
311
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
312
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
313
+ errors: [
314
+ Error
315
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31)
316
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:256:39)
317
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
318
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
319
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
320
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
321
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
322
+ ],
323
+ stack: 'Error\n' +
324
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31)\n' +
325
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:256:39)\n' +
326
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
327
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
328
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
329
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
330
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
331
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31',
332
+ level: 'error',
333
+ additionalContent: {},
334
+ confidentialContent: {}
335
+ } 
336
+ ..Token request failed DyFM_Error {
337
+ __created: 2026-06-05T12:50:52.434Z,
338
+ __createdBy: 'OAuth2ControlService',
339
+ __lastModified: 2026-06-05T12:50:52.434Z,
340
+ __lastModifiedBy: 'OAuth2ControlService',
341
+ __v: 0,
342
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
343
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT2',
344
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT2' ],
345
+ _message: 'Missing refresh token',
346
+ _messages: [ 'Missing refresh token' ],
347
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT2',
348
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT2' ],
349
+ ___handled: false,
350
+ ___status: 400,
351
+ ___issuer: 'MISSING-ISSUER',
352
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
353
+ ___issuerService: 'OAuth2ControlService',
354
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
355
+ error: Error
356
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31)
357
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:274:39)
358
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
359
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
360
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
361
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
362
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
363
+ errors: [
364
+ Error
365
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31)
366
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:274:39)
367
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
368
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
369
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
370
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
371
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
372
+ ],
373
+ stack: 'Error\n' +
374
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31)\n' +
375
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:274:39)\n' +
376
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
377
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
378
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
379
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
380
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
381
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31',
382
+ level: 'error',
383
+ additionalContent: {},
384
+ confidentialContent: {}
385
+ } 
386
+ .Token request failed DyFM_Error {
387
+ __created: 2026-06-05T12:50:52.435Z,
388
+ __createdBy: 'OAuth2ControlService',
389
+ __lastModified: 2026-06-05T12:50:52.435Z,
390
+ __lastModifiedBy: 'OAuth2ControlService',
391
+ __v: 0,
392
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
393
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT7',
394
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT7' ],
395
+ _message: 'Missing username or password',
396
+ _messages: [ 'Missing username or password' ],
397
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT7',
398
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT7' ],
399
+ ___handled: false,
400
+ ___status: 400,
401
+ ___issuer: 'MISSING-ISSUER',
402
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
403
+ ___issuerService: 'OAuth2ControlService',
404
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
405
+ error: Error
406
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31)
407
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:292:39)
408
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
409
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
410
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
411
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
412
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
413
+ errors: [
414
+ Error
415
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31)
416
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:292:39)
417
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
418
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
419
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
420
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
421
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
422
+ ],
423
+ stack: 'Error\n' +
424
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31)\n' +
425
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:292:39)\n' +
426
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
427
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
428
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
429
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
430
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
431
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31',
432
+ level: 'error',
433
+ additionalContent: {},
434
+ confidentialContent: {}
435
+ } 
436
+ .Token request failed DyFM_Error {
437
+ __created: 2026-06-05T12:50:52.437Z,
438
+ __createdBy: 'OAuth2ControlService',
439
+ __lastModified: 2026-06-05T12:50:52.437Z,
440
+ __lastModifiedBy: 'OAuth2ControlService',
441
+ __v: 0,
442
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
443
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT6',
444
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT6' ],
445
+ _message: 'Invalid refresh token',
446
+ _messages: [ 'Invalid refresh token' ],
447
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT6',
448
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT6' ],
449
+ ___handled: false,
450
+ ___status: 400,
451
+ ___issuer: 'MISSING-ISSUER',
452
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
453
+ ___issuerService: 'OAuth2ControlService',
454
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
455
+ error: Error
456
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31)
457
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:283:39)
458
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
459
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
460
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
461
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
462
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
463
+ errors: [
464
+ Error
465
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31)
466
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:283:39)
467
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
468
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
469
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
470
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
471
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
472
+ ],
473
+ stack: 'Error\n' +
474
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31)\n' +
475
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:283:39)\n' +
476
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
477
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
478
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
479
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
480
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
481
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31',
482
+ level: 'error',
483
+ additionalContent: {},
484
+ confidentialContent: {}
485
+ } 
486
+ .Token request failed DyFM_Error {
487
+ __created: 2026-06-05T12:50:52.438Z,
488
+ __createdBy: 'OAuth2ControlService',
489
+ __lastModified: 2026-06-05T12:50:52.438Z,
490
+ __lastModifiedBy: 'OAuth2ControlService',
491
+ __v: 0,
492
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
493
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT8',
494
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT8' ],
495
+ _message: 'Invalid username or password',
496
+ _messages: [ 'Invalid username or password' ],
497
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT8',
498
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT8' ],
499
+ ___handled: false,
500
+ ___status: 401,
501
+ ___issuer: 'MISSING-ISSUER',
502
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
503
+ ___issuerService: 'OAuth2ControlService',
504
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
505
+ error: Error
506
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31)
507
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:302:39)
508
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
509
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
510
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
511
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
512
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
513
+ errors: [
514
+ Error
515
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31)
516
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:302:39)
517
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
518
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
519
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
520
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
521
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
522
+ ],
523
+ stack: 'Error\n' +
524
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31)\n' +
525
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:302:39)\n' +
526
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
527
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
528
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
529
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
530
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
531
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31',
532
+ level: 'error',
533
+ additionalContent: {},
534
+ confidentialContent: {}
535
+ } 
536
+ .Token request failed DyFM_Error {
537
+ __created: 2026-06-05T12:50:52.470Z,
538
+ __createdBy: 'OAuth2ControlService',
539
+ __lastModified: 2026-06-05T12:50:52.470Z,
540
+ __lastModifiedBy: 'OAuth2ControlService',
541
+ __v: 0,
542
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
543
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT4',
544
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT4' ],
545
+ _message: 'Invalid client credentials',
546
+ _messages: [ 'Invalid client credentials' ],
547
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT4',
548
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT4' ],
549
+ ___handled: false,
550
+ ___status: 401,
551
+ ___issuer: 'MISSING-ISSUER',
552
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
553
+ ___issuerService: 'OAuth2ControlService',
554
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
555
+ error: Error
556
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23)
557
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:247:39)
558
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
559
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
560
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
561
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
562
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
563
+ errors: [
564
+ Error
565
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23)
566
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:247:39)
567
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
568
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
569
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
570
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
571
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
572
+ ],
573
+ stack: 'Error\n' +
574
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23)\n' +
575
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:247:39)\n' +
576
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
577
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
578
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
579
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
580
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
581
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23',
582
+ level: 'error',
583
+ additionalContent: {},
584
+ confidentialContent: {}
585
+ } 
586
+ .Token request failed DyFM_Error {
587
+ __created: 2026-06-05T12:50:52.472Z,
588
+ __createdBy: 'OAuth2ControlService',
589
+ __lastModified: 2026-06-05T12:50:52.472Z,
590
+ __lastModifiedBy: 'OAuth2ControlService',
591
+ __v: 0,
592
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
593
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT5',
594
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT5' ],
595
+ _message: 'Invalid or expired authorization code',
596
+ _messages: [ 'Invalid or expired authorization code' ],
597
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT5',
598
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT5' ],
599
+ ___handled: false,
600
+ ___status: 400,
601
+ ___issuer: 'MISSING-ISSUER',
602
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
603
+ ___issuerService: 'OAuth2ControlService',
604
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
605
+ error: Error
606
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31)
607
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:265:39)
608
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
609
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
610
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
611
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
612
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
613
+ errors: [
614
+ Error
615
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31)
616
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:265:39)
617
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
618
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
619
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
620
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
621
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
622
+ ],
623
+ stack: 'Error\n' +
624
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31)\n' +
625
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:265:39)\n' +
626
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
627
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
628
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
629
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
630
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
631
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31',
632
+ level: 'error',
633
+ additionalContent: {},
634
+ confidentialContent: {}
635
+ } 
636
+ .Token request failed DyFM_Error {
637
+ __created: 2026-06-05T12:50:52.473Z,
638
+ __createdBy: 'OAuth2ControlService',
639
+ __lastModified: 2026-06-05T12:50:52.473Z,
640
+ __lastModifiedBy: 'OAuth2ControlService',
641
+ __v: 0,
642
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
643
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT0',
644
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT0' ],
645
+ _message: 'Missing required OAuth2 parameters',
646
+ _messages: [ 'Missing required OAuth2 parameters' ],
647
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT0',
648
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT0' ],
649
+ ___handled: false,
650
+ ___status: 400,
651
+ ___issuer: 'MISSING-ISSUER',
652
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
653
+ ___issuerService: 'OAuth2ControlService',
654
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
655
+ error: Error
656
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23)
657
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:239:39)
658
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
659
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
660
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
661
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
662
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
663
+ errors: [
664
+ Error
665
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23)
666
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:239:39)
667
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
668
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
669
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
670
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
671
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
672
+ ],
673
+ stack: 'Error\n' +
674
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23)\n' +
675
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:239:39)\n' +
676
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
677
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
678
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
679
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
680
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
681
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23',
682
+ level: 'error',
683
+ additionalContent: {},
684
+ confidentialContent: {}
685
+ } 
686
+ .Token request failed DyFM_Error {
687
+ __created: 2026-06-05T12:50:52.474Z,
688
+ __createdBy: 'OAuth2ControlService',
689
+ __lastModified: 2026-06-05T12:50:52.474Z,
690
+ __lastModifiedBy: 'OAuth2ControlService',
691
+ __v: 0,
692
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
693
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT3',
694
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT3' ],
695
+ _message: 'Unsupported grant_type',
696
+ _messages: [ 'Unsupported grant_type' ],
697
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT3',
698
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT3' ],
699
+ ___handled: false,
700
+ ___status: 400,
701
+ ___issuer: 'MISSING-ISSUER',
702
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
703
+ ___issuerService: 'OAuth2ControlService',
704
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
705
+ error: Error
706
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27)
707
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:310:39)
708
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
709
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
710
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
711
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
712
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
713
+ errors: [
714
+ Error
715
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27)
716
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:310:39)
717
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
718
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
719
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
720
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
721
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
722
+ ],
723
+ stack: 'Error\n' +
724
+ ' at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27)\n' +
725
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:310:39)\n' +
726
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
727
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
728
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
729
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
730
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
731
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27',
732
+ level: 'error',
733
+ additionalContent: {},
734
+ confidentialContent: {}
735
+ } 
736
+ .....Authorization request failed DyFM_Error {
737
+ __created: 2026-06-05T12:50:52.480Z,
738
+ __createdBy: 'OAuth2ControlService',
739
+ __lastModified: 2026-06-05T12:50:52.480Z,
740
+ __lastModifiedBy: 'OAuth2ControlService',
741
+ __v: 0,
742
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
743
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA4',
744
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA4' ],
745
+ _message: 'Invalid scope',
746
+ _messages: [ 'Invalid scope' ],
747
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA4',
748
+ __userMessages: [
749
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA4'
750
+ ],
751
+ ___handled: false,
752
+ ___status: 400,
753
+ ___issuer: 'MISSING-ISSUER',
754
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
755
+ ___issuerService: 'OAuth2ControlService',
756
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
757
+ error: Error
758
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23)
759
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:165:39)
760
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
761
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
762
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
763
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
764
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
765
+ errors: [
766
+ Error
767
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23)
768
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:165:39)
769
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
770
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
771
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
772
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
773
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
774
+ ],
775
+ stack: 'Error\n' +
776
+ ' at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23)\n' +
777
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:165:39)\n' +
778
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
779
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
780
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
781
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
782
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
783
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23',
784
+ level: 'error',
785
+ additionalContent: {},
786
+ confidentialContent: {}
787
+ } 
788
+ .Authorization request failed DyFM_Error {
789
+ __created: 2026-06-05T12:50:52.482Z,
790
+ __createdBy: 'OAuth2ControlService',
791
+ __lastModified: 2026-06-05T12:50:52.482Z,
792
+ __lastModifiedBy: 'OAuth2ControlService',
793
+ __v: 0,
794
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
795
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA1',
796
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA1' ],
797
+ _message: 'Unsupported response_type',
798
+ _messages: [ 'Unsupported response_type' ],
799
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA1',
800
+ __userMessages: [
801
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA1'
802
+ ],
803
+ ___handled: false,
804
+ ___status: 400,
805
+ ___issuer: 'MISSING-ISSUER',
806
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
807
+ ___issuerService: 'OAuth2ControlService',
808
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
809
+ error: Error
810
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19)
811
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:173:39)
812
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
813
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
814
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
815
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
816
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
817
+ errors: [
818
+ Error
819
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19)
820
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:173:39)
821
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
822
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
823
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
824
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
825
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
826
+ ],
827
+ stack: 'Error\n' +
828
+ ' at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19)\n' +
829
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:173:39)\n' +
830
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
831
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
832
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
833
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
834
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
835
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19',
836
+ level: 'error',
837
+ additionalContent: {},
838
+ confidentialContent: {}
839
+ } 
840
+ .Authorization request failed DyFM_Error {
841
+ __created: 2026-06-05T12:50:52.483Z,
842
+ __createdBy: 'OAuth2ControlService',
843
+ __lastModified: 2026-06-05T12:50:52.483Z,
844
+ __lastModifiedBy: 'OAuth2ControlService',
845
+ __v: 0,
846
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
847
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA3',
848
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA3' ],
849
+ _message: 'Invalid redirect_uri',
850
+ _messages: [ 'Invalid redirect_uri' ],
851
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA3',
852
+ __userMessages: [
853
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA3'
854
+ ],
855
+ ___handled: false,
856
+ ___status: 400,
857
+ ___issuer: 'MISSING-ISSUER',
858
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
859
+ ___issuerService: 'OAuth2ControlService',
860
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
861
+ error: Error
862
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23)
863
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:156:39)
864
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
865
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
866
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
867
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
868
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
869
+ errors: [
870
+ Error
871
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23)
872
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:156:39)
873
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
874
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
875
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
876
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
877
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
878
+ ],
879
+ stack: 'Error\n' +
880
+ ' at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23)\n' +
881
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:156:39)\n' +
882
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
883
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
884
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
885
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
886
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
887
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23',
888
+ level: 'error',
889
+ additionalContent: {},
890
+ confidentialContent: {}
891
+ } 
892
+ .Authorization request failed DyFM_Error {
893
+ __created: 2026-06-05T12:50:52.484Z,
894
+ __createdBy: 'OAuth2ControlService',
895
+ __lastModified: 2026-06-05T12:50:52.484Z,
896
+ __lastModifiedBy: 'OAuth2ControlService',
897
+ __v: 0,
898
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
899
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA2',
900
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA2' ],
901
+ _message: 'Invalid client_id',
902
+ _messages: [ 'Invalid client_id' ],
903
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA2',
904
+ __userMessages: [
905
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA2'
906
+ ],
907
+ ___handled: false,
908
+ ___status: 400,
909
+ ___issuer: 'MISSING-ISSUER',
910
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
911
+ ___issuerService: 'OAuth2ControlService',
912
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
913
+ error: Error
914
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23)
915
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:148:39)
916
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
917
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
918
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
919
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
920
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
921
+ errors: [
922
+ Error
923
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23)
924
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:148:39)
925
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
926
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
927
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
928
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
929
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
930
+ ],
931
+ stack: 'Error\n' +
932
+ ' at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23)\n' +
933
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:148:39)\n' +
934
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
935
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
936
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
937
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
938
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
939
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23',
940
+ level: 'error',
941
+ additionalContent: {},
942
+ confidentialContent: {}
943
+ } 
944
+ .Authorization request failed DyFM_Error {
945
+ __created: 2026-06-05T12:50:52.485Z,
946
+ __createdBy: 'OAuth2ControlService',
947
+ __lastModified: 2026-06-05T12:50:52.485Z,
948
+ __lastModifiedBy: 'OAuth2ControlService',
949
+ __v: 0,
950
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
951
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA0',
952
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA0' ],
953
+ _message: 'Missing required OAuth2 parameters',
954
+ _messages: [ 'Missing required OAuth2 parameters' ],
955
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA0',
956
+ __userMessages: [
957
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA0'
958
+ ],
959
+ ___handled: false,
960
+ ___status: 400,
961
+ ___issuer: 'MISSING-ISSUER',
962
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
963
+ ___issuerService: 'OAuth2ControlService',
964
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
965
+ error: Error
966
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23)
967
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:140:39)
968
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
969
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
970
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
971
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
972
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
973
+ errors: [
974
+ Error
975
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23)
976
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:140:39)
977
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
978
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
979
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
980
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
981
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
982
+ ],
983
+ stack: 'Error\n' +
984
+ ' at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23)\n' +
985
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:140:39)\n' +
986
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
987
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
988
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
989
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
990
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
991
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23',
992
+ level: 'error',
993
+ additionalContent: {},
994
+ confidentialContent: {}
995
+ } 
996
+ .....Userinfo request failed DyFM_Error {
997
+ __created: 2026-06-05T12:50:52.489Z,
998
+ __createdBy: 'OAuth2ControlService',
999
+ __lastModified: 2026-06-05T12:50:52.489Z,
1000
+ __lastModifiedBy: 'OAuth2ControlService',
1001
+ __v: 0,
1002
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1003
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HU0',
1004
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HU0' ],
1005
+ _message: 'Invalid or expired access token',
1006
+ _messages: [ 'Invalid or expired access token' ],
1007
+ __userMessage: 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0',
1008
+ __userMessages: [ 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0' ],
1009
+ ___handled: false,
1010
+ ___status: 401,
1011
+ ___issuer: 'MISSING-ISSUER',
1012
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1013
+ ___issuerService: 'OAuth2ControlService',
1014
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1015
+ error: Error
1016
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1017
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:354:39)
1018
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1019
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1020
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1021
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1022
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1023
+ errors: [
1024
+ Error
1025
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1026
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:354:39)
1027
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1028
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1029
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1030
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1031
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1032
+ ],
1033
+ stack: 'Error\n' +
1034
+ ' at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)\n' +
1035
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:354:39)\n' +
1036
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1037
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1038
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1039
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1040
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1041
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23',
1042
+ level: 'error',
1043
+ additionalContent: {},
1044
+ confidentialContent: {}
1045
+ } 
1046
+ .Userinfo request failed DyFM_Error {
1047
+ __created: 2026-06-05T12:50:52.490Z,
1048
+ __createdBy: 'OAuth2ControlService',
1049
+ __lastModified: 2026-06-05T12:50:52.490Z,
1050
+ __lastModifiedBy: 'OAuth2ControlService',
1051
+ __v: 0,
1052
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1053
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HU0',
1054
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HU0' ],
1055
+ _message: 'Invalid or expired access token',
1056
+ _messages: [ 'Invalid or expired access token' ],
1057
+ __userMessage: 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0',
1058
+ __userMessages: [ 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0' ],
1059
+ ___handled: false,
1060
+ ___status: 401,
1061
+ ___issuer: 'MISSING-ISSUER',
1062
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1063
+ ___issuerService: 'OAuth2ControlService',
1064
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1065
+ error: Error
1066
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1067
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:343:39)
1068
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1069
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1070
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1071
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1072
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1073
+ errors: [
1074
+ Error
1075
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1076
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:343:39)
1077
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1078
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1079
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1080
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1081
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1082
+ ],
1083
+ stack: 'Error\n' +
1084
+ ' at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)\n' +
1085
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:343:39)\n' +
1086
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1087
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1088
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1089
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1090
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1091
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23',
1092
+ level: 'error',
1093
+ additionalContent: {},
1094
+ confidentialContent: {}
1095
+ } 
1096
+ ..Userinfo request failed Error: Token missing
1097
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:338:64)
1098
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1099
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1100
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1101
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1102
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 
1103
+ ..************.*****.................................*********........................................******...----------
1104
+ DYNAMO WARNING:
1105
+ vectorizeUseIndex is required if vectorizedFrom is set at "contentVectorized" in "test_data" model. (It will be set to "contentVectorized" by default)
1106
+ stackLocation: Error
1107
+
1108
+ ---------- 
1109
+ Vectorized from property "content" is not a number[] property in "test_data" model.
1110
+ stackLocation: /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.spec.js:222:40
1111
+ 
1112
+ .......----------
1113
+ DYNAMO WARNING:
1114
+ vectorizeUseIndex is required if vectorizedFrom is set at "contentVectorized" in "test_data" model. (It will be set to "contentVectorized" by default)
1115
+ stackLocation: Error
1116
+
1117
+ ---------- 
1118
+ Vectorized from property "content" is not a number[] property in "test_data" model.
1119
+ stackLocation: /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.spec.js:334:40
1120
+ 
1121
+ .............You should not set the subscription event, in case you need additional steps for your subscriptions. test (0) 
1122
+ You should not set the unsubscribe event, in case you need additional steps for your unsubscribe. test (0) 
1123
+ You should not set the error event, in case you need additional steps for your error. test (0) 
1124
+ ......Unable to parse JSON answer: {
1125
+ unparsedJSON: 'option1',
1126
+ error: Error: JSON parsing failed: Unexpected token 'o', "option1" is not valid JSON
1127
+ at Function.parseJsonWithEnhancedError (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.15.21_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_collections/utils/json-error-helper.util.ts:261:15)
1128
+ at Function.failableSafeParseJSON (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.15.21_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_collections/utils/object.util.ts:472:35)
1129
+ at Function.safeParseJSON (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.15.21_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_collections/utils/object.util.ts:397:19)
1130
+ at TestLLMService.convertAnswerToSelectOption (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/ai/_services/ai-llm.service-base.js:184:61)
1131
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/ai/_services/ai-llm.service-base.spec.js:119:36)
1132
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1133
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1134
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1135
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1136
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1137
+ } 
1138
+ 
1139
+ ||||||||||
1140
+
1141
+ DyNTS_AI_LLMChat_ServiceBase.convertAnswerToSelectOption got an invalid answer { question: 'Select an option', answer: 'OPTION1' }
1142
+
1143
+ ||||||||||
1144
+ 
1145
+ ....................**************...................................................❌ getDataByDependencyId failed, dependencyKey is missing from service! (test_data)
1146
+ 📍 /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/base/data.service.spec.js:182:87
1147
+ ..
1148
+ EmailService construction (Test Sender) Finished!
1149
+ .....****************........
1150
+ Endpoint params setup failed: name: 'testEndpoint' (security: undefined) endpoint:
1151
+ ERROR:
1152
+ Error: endpoint not setted up for this endpoint (testEndpoint)
1153
+ at new DyFM_Endpoint_SettingsBase (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.15.21_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_models/control-models/service-endpoint-settings-base.control-model.ts:55:13)
1154
+ at new DyNTS_Endpoint_Params (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.js:53:13)
1155
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:194:17
1156
+ at compare (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:7305:11)
1157
+ at Expector.compare (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:4287:27)
1158
+ at Expectation.toThrow (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:4046:36)
1159
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:200:16)
1160
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1161
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1162
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16) 
1163
+ ...... <<<===== 'testEndpoint' result sent.
1164
+ .. <<<===== 'testEndpoint' result sent.
1165
+ .
1166
+ ||||||||||
1167
+
1168
+ Endpoint caught an error. 'testEndpoint' (/test)
1169
+ ErrorCode: NO-ERROR-CODE
1170
+ error: "Test error"
1171
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:448:28
1172
+
1173
+ ||||||||||
1174
+ 
1175
+ 
1176
+
1177
+ \\\\\\\\\\
1178
+ \\\\\\\\\\
1179
+ \\\\\\\\\\
1180
+
1181
+ Endpoint "/test" caught an error. (testEndpoint)
1182
+ ErrorCode: NO-ERROR-CODE
1183
+ Message: Test error
1184
+
1185
+ UserMessage: undefined
1186
+ LocalStack:
1187
+ /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:441:27
1188
+
1189
+ Stack: Error: Test error
1190
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:442:24)
1191
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1192
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1193
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1194
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1195
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1196
+
1197
+ //////////
1198
+ //////////
1199
+ //////////
1200
+
1201
+ 
1202
+ 
1203
+ .
1204
+ ||||||||||
1205
+
1206
+ Endpoint caught an error. 'testEndpoint' (/test)
1207
+ error: "Circular error"
1208
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:473:28
1209
+
1210
+ ||||||||||
1211
+ 
1212
+ 
1213
+
1214
+ \\\\\\\\\\
1215
+ \\\\\\\\\\
1216
+ \\\\\\\\\\
1217
+
1218
+ Endpoint "/test" caught an error. (testEndpoint)
1219
+ ERROR: <ref *1> { message: 'Circular error', self: [Circular *1] }
1220
+
1221
+ //////////
1222
+ //////////
1223
+ //////////
1224
+
1225
+ 
1226
+ 
1227
+ .
1228
+ ||||||||||
1229
+
1230
+ Endpoint caught an error. 'testEndpoint' (/test)
1231
+ ErrorCode: NO-ERROR-CODE
1232
+ error: "Test error"
1233
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:402:28
1234
+
1235
+ ||||||||||
1236
+ 
1237
+ 
1238
+
1239
+ \\\\\\\\\\
1240
+ \\\\\\\\\\
1241
+ \\\\\\\\\\
1242
+
1243
+ Endpoint "/test" caught an error. (testEndpoint)
1244
+ ErrorCode: NO-ERROR-CODE
1245
+ Message: Test error
1246
+
1247
+ UserMessage: undefined
1248
+ LocalStack:
1249
+ /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:397:27
1250
+
1251
+ Stack: Error: Test error
1252
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:398:24)
1253
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1254
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1255
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1256
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1257
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1258
+
1259
+ //////////
1260
+ //////////
1261
+ //////////
1262
+
1263
+ 
1264
+ 
1265
+ .
1266
+ ||||||||||
1267
+
1268
+ Endpoint caught an error. 'testEndpoint' (/test)
1269
+ error: "Test error"
1270
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:422:28
1271
+
1272
+ ||||||||||
1273
+ 
1274
+ 
1275
+
1276
+ \\\\\\\\\\
1277
+ \\\\\\\\\\
1278
+ \\\\\\\\\\
1279
+
1280
+ Endpoint "/test" caught an error. (testEndpoint)
1281
+ ERROR: Error: Test error
1282
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:420:27)
1283
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1284
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1285
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1286
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1287
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1288
+
1289
+ //////////
1290
+ //////////
1291
+ //////////
1292
+
1293
+ 
1294
+ 
1295
+ ..
1296
+ ||||||||||
1297
+
1298
+ Endpoint caught an error. 'testEndpoint' (/test)
1299
+ error: "Test error"
1300
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:308:28
1301
+
1302
+ ||||||||||
1303
+ 
1304
+ 
1305
+
1306
+ \\\\\\\\\\
1307
+ \\\\\\\\\\
1308
+ \\\\\\\\\\
1309
+
1310
+ Endpoint "/test" caught an error. (testEndpoint)
1311
+ ERROR: Error: Test error
1312
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_models/control-models/endpoint-params.control-model.spec.js:306:27)
1313
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1314
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1315
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1316
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1317
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1318
+
1319
+ //////////
1320
+ //////////
1321
+ //////////
1322
+
1323
+ 
1324
+ 
1325
+ . <<<===== 'testEndpoint' result sent.
1326
+ ............error-marker-1780663853577
1327
+ .hello-from-spec-1780663853578
1328
+ .redtext-payload
1329
+ .raw
1330
+ .payload-1
1331
+ payload-2
1332
+ ..........autoConnect or reconnection is set to true in socketOptions, so reconnect is set to false
1333
+ This means that the reconnection will use the socket.io reconnection logic, not the Dynamo implementations. 
1334
+ 
1335
+
1336
+ \\\\\\\\\\
1337
+ \\\\\\\\\\
1338
+ \\\\\\\\\\
1339
+
1340
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1341
+
1342
+ //////////
1343
+ //////////
1344
+ //////////
1345
+
1346
+ 
1347
+ autoConnect or reconnection is set to true in socketOptions, so reconnect is set to false
1348
+ This means that the reconnection will use the socket.io reconnection logic, not the Dynamo implementations. 
1349
+ 
1350
+
1351
+ \\\\\\\\\\
1352
+ \\\\\\\\\\
1353
+ \\\\\\\\\\
1354
+
1355
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1356
+
1357
+ //////////
1358
+ //////////
1359
+ //////////
1360
+
1361
+ 
1362
+ ..
1363
+ socket-client (socket-client-mock) Service setup finished
1364
+ < .. > socket-client (socket-client-mock) connecting to ws://localhost:0 ...
1365
+ .DyNTS_App_Params.constructor: dbName is not set in "nts-integration-test" model.For future compatibility.
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+
1375
+
1376
+ Starting nts-integration-test...
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+ ]0;nts-integration-test
1388
+ EmailService construction (FutDevPro - Auto) Finished!
1389
+
1390
+ No database connection created.
1391
+ Fri, 05 Jun 2026 12:50:53 GMT body-parser deprecated undefined extended: provide extended option at build/_services/server/app.server.js:848:41
1392
+ 
1393
+
1394
+ \\\\\\\\\\
1395
+ \\\\\\\\\\
1396
+ \\\\\\\\\\
1397
+
1398
+
1399
+ HTTP (open) server is using a randomly selected port by the OS: 34247
1400
+ (httpPort was set to 0 — this is intended for testing only)
1401
+
1402
+ //////////
1403
+ //////////
1404
+ //////////
1405
+
1406
+ 
1407
+ 
1408
+ HTTP (open) server is listening on port: 0.0.0.0:34247
1409
+ 
1410
+ socket server setup finished: "test" (attached to server on port: 0)
1411
+ .
1412
+ ===>>> incoming 'testBase' request... (issuer: accountId_mock)
1413
+  <<<===== 'testBase' result sent.
1414
+ ...
1415
+ ===>>> incoming 'testSimple' request... (issuer: accountId_mock)
1416
+  <<<===== 'testSimple' result sent.
1417
+ .
1418
+ stopping server...
1419
+ 
1420
+ 
1421
+
1422
+ \\\\\\\\\\
1423
+ \\\\\\\\\\
1424
+ \\\\\\\\\\
1425
+
1426
+ "nts-integration-test" started successfully.
1427
+
1428
+ //////////
1429
+ //////////
1430
+ //////////
1431
+
1432
+ 
1433
+ 
1434
+ HTTP socket server close error Error: Server is not running.
1435
+ at Server.close (node:net:2284:12)
1436
+ at Object.onceWrapper (node:events:638:28)
1437
+ at Server.emit (node:events:536:35)
1438
+ at Server.emit (node:domain:489:12)
1439
+ at emitCloseNT (node:net:2344:8)
1440
+ at processTicksAndRejections (node:internal/process/task_queues:81:21) {
1441
+ code: 'ERR_SERVER_NOT_RUNNING'
1442
+ } 
1443
+ .......................*******....
1444
+ ||||||||||
1445
+
1446
+ ❌❌ Error handleMessage: Error: Test error
1447
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/assistant/_services/ass-io.control-service.spec.js:68:136)
1448
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1449
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1450
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1451
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1452
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1453
+ at processTicksAndRejections (node:internal/process/task_queues:95:5)
1454
+
1455
+ ||||||||||
1456
+ 
1457
+ .
1458
+ ||||||||||
1459
+
1460
+ ❌❌ Error handleMessage: Error: Test error
1461
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/assistant/_services/ass-io.control-service.spec.js:92:136)
1462
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1463
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1464
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1465
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1466
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1467
+ at processTicksAndRejections (node:internal/process/task_queues:95:5)
1468
+
1469
+ ||||||||||
1470
+ 
1471
+ ..............................**********************..........................................Authentication Service missing!
1472
+ ......Authentication Service missing!
1473
+ .Authentication Service missing!
1474
+ .Authentication Service missing!
1475
+ .Authentication Service missing!
1476
+ .Authentication Service missing!
1477
+ .Authentication Service missing!
1478
+ .......**************............................................................................................🔍 Comparing "document" document: "New Document"
1479
+ .🔍 Comparing "document" document: "Test Document"
1480
+ ................***************...........................DyNTS AI | onCostEvent callback threw (call-type: embedding-single, model: text-embedding-3-small, issuer: test-issuer): consumer callback failure
1481
+ .....................................................**......
1482
+ ||||||||||
1483
+
1484
+ Error during Discord bot start: Error: Discord client not initialized. Call setup() first.
1485
+ at DyNTS_DiB_MessagingProvider_ControlService.start (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.js:53:23)
1486
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.spec.js:140:32)
1487
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1488
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1489
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1490
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1491
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1492
+
1493
+ ||||||||||
1494
+ 
1495
+ ...................
1496
+ ||||||||||
1497
+
1498
+ Error replying to message: Error: Reply failed
1499
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.spec.js:241:27)
1500
+
1501
+ ||||||||||
1502
+ 
1503
+ ................................................<--- outgoing API call: "Test API Call"
1504
+ WARNING you cant send body in get calls (Test API Call)
1505
+ "Test API Call" api call was successful
1506
+ .<--- outgoing API call: "Test API Call"
1507
+ WARNING you cant send body in get calls (Test API Call)
1508
+ ----------
1509
+
1510
+ ---> API ERROR: "Test API Call" failed (500)...
1511
+ endpoint: get "http://example.com/api/test"
1512
+ BE-BE requestStackLocation: "/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/api.service.spec.js:12:22"
1513
+ error: "undefined"
1514
+ localStack: "/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/api.service.js:126:22"
1515
+ ---------- 
1516
+ 
1517
+ 'Test API Call' was UNSUCCESSFUL
1518
+ .<--- outgoing API call: "Test API Call"
1519
+ WARNING you cant send body in get calls (Test API Call)
1520
+ ----------
1521
+
1522
+ ---> API ERROR: "Test API Call" failed (500)...
1523
+ endpoint: get "http://example.com/api/test"
1524
+ BE-BE requestStackLocation: "/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/api.service.spec.js:12:22"
1525
+ error: "undefined"
1526
+ localStack: "/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/api.service.js:126:22"
1527
+ ---------- 
1528
+ 
1529
+ 'Test API Call' was UNSUCCESSFUL
1530
+ .<--- outgoing API call: "Test API Call"
1531
+ .<--- outgoing API call: "Test API Call"
1532
+ ---> "Test API Call" api call was successful
1533
+ .<--- outgoing API call: "Test API Call"
1534
+ WARNING you cant send body in get calls (Test API Call)
1535
+ ----------
1536
+
1537
+ ---> API ERROR: "Test API Call" failed (500)...
1538
+ endpoint: get "http://example.com/api/test"
1539
+ BE-BE requestStackLocation: "/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/api.service.spec.js:12:22"
1540
+ error: "undefined"
1541
+ localStack: "/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/api.service.js:126:22"
1542
+ ---------- 
1543
+ 
1544
+ 'Test API Call' was UNSUCCESSFUL
1545
+ .............................................................................********........................................................................................ServerStatus snapshot created
1546
+ ...
1547
+ ||||||||||
1548
+
1549
+ (checkServerConnections) "test-service" server is not available
1550
+ baseUrl: https://test.example.com
1551
+ testEndpoint: /test Error: Connection failed
1552
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/server/server-status/server-status.control-service.spec.js:223:27)
1553
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1554
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1555
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1556
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1557
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1558
+
1559
+ ||||||||||
1560
+ 
1561
+ ..............*.....
1562
+ ||||||||||
1563
+
1564
+ Error during Dynamo bot start: Error: Start failed
1565
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/bot/_modules/dynamo-bot/_services/dyb-messaging-provider.control-service.spec.js:117:27)
1566
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1567
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1568
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1569
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1570
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1571
+
1572
+ ||||||||||
1573
+ 
1574
+ .Dynamo bot event listeners setup (messaging integration)
1575
+ .............Dynamo bot provider setup completed
1576
+ ...*******.................................................................................................DYNAMO-NTS ERROR: INVALID route type: invalid - undefined
1577
+ ....INVALID route type: invalid - undefined
1578
+ ...OAuth2 usage data permission check failed DyFM_Error {
1579
+ __created: 2026-06-05T12:50:56.478Z,
1580
+ __createdBy: 'AuthService',
1581
+ __lastModified: 2026-06-05T12:50:56.478Z,
1582
+ __lastModifiedBy: 'AuthService',
1583
+ __v: 0,
1584
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1585
+ _errorCode: 'NIT_LOCAL|DyNTS-OA2-ATU1',
1586
+ _errorCodes: [ 'NIT_LOCAL|DyNTS-OA2-ATU1' ],
1587
+ _message: 'Invalid token format',
1588
+ _messages: [ 'Invalid token format' ],
1589
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1590
+ 'please contact the responsible development team.\n' +
1591
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-ATU1',
1592
+ __userMessages: [
1593
+ 'We encountered an unhandled Auth Error, \n' +
1594
+ 'please contact the responsible development team.\n' +
1595
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-ATU1'
1596
+ ],
1597
+ ___handled: false,
1598
+ ___status: 401,
1599
+ ___issuer: 'MISSING-ISSUER',
1600
+ ___issuerSystem: '-test-wb-mock-',
1601
+ ___issuerService: 'AuthService',
1602
+ ___systemVersion: '1.0.0',
1603
+ error: Error
1604
+ at DyNTS_OAuth2_AuthService.authenticate_tokenPerm_accUsageData (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23)
1605
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:142:39)
1606
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1607
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1608
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1609
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1610
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1611
+ errors: [
1612
+ Error
1613
+ at DyNTS_OAuth2_AuthService.authenticate_tokenPerm_accUsageData (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23)
1614
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:142:39)
1615
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1616
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1617
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1618
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1619
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1620
+ ],
1621
+ stack: 'Error\n' +
1622
+ ' at DyNTS_OAuth2_AuthService.authenticate_tokenPerm_accUsageData (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23)\n' +
1623
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:142:39)\n' +
1624
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1625
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1626
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1627
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1628
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1629
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23',
1630
+ level: 'error',
1631
+ additionalContent: {},
1632
+ confidentialContent: {}
1633
+ } 
1634
+ ...OAuth2 self-token authentication failed DyFM_Error {
1635
+ __created: 2026-06-05T12:50:56.482Z,
1636
+ __createdBy: 'AuthService',
1637
+ __lastModified: 2026-06-05T12:50:56.482Z,
1638
+ __lastModifiedBy: 'AuthService',
1639
+ __v: 0,
1640
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1641
+ _errorCode: 'NIT_LOCAL|DyNTS-OA2-ATS1',
1642
+ _errorCodes: [ 'NIT_LOCAL|DyNTS-OA2-ATS1' ],
1643
+ _message: 'Invalid token format',
1644
+ _messages: [ 'Invalid token format' ],
1645
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1646
+ 'please contact the responsible development team.\n' +
1647
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-ATS1',
1648
+ __userMessages: [
1649
+ 'We encountered an unhandled Auth Error, \n' +
1650
+ 'please contact the responsible development team.\n' +
1651
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-ATS1'
1652
+ ],
1653
+ ___handled: false,
1654
+ ___status: 401,
1655
+ ___issuer: 'MISSING-ISSUER',
1656
+ ___issuerSystem: '-test-wb-mock-',
1657
+ ___issuerService: 'AuthService',
1658
+ ___systemVersion: '1.0.0',
1659
+ error: Error
1660
+ at DyNTS_OAuth2_AuthService.authenticate_tokenSelf (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23)
1661
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:116:39)
1662
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1663
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1664
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1665
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1666
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1667
+ errors: [
1668
+ Error
1669
+ at DyNTS_OAuth2_AuthService.authenticate_tokenSelf (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23)
1670
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:116:39)
1671
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1672
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1673
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1674
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1675
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1676
+ ],
1677
+ stack: 'Error\n' +
1678
+ ' at DyNTS_OAuth2_AuthService.authenticate_tokenSelf (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23)\n' +
1679
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:116:39)\n' +
1680
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1681
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1682
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1683
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1684
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1685
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23',
1686
+ level: 'error',
1687
+ additionalContent: {},
1688
+ confidentialContent: {}
1689
+ } 
1690
+ .....OAuth2 token authentication failed DyFM_Error {
1691
+ __created: 2026-06-05T12:50:56.486Z,
1692
+ __createdBy: 'AuthService',
1693
+ __lastModified: 2026-06-05T12:50:56.486Z,
1694
+ __lastModifiedBy: 'AuthService',
1695
+ __v: 0,
1696
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1697
+ _errorCode: 'NIT_LOCAL|DyNTS-AS0-GT0',
1698
+ _errorCodes: [ 'NIT_LOCAL|DyNTS-AS0-GT0' ],
1699
+ _message: 'AuthHeader missing!',
1700
+ _messages: [ 'AuthHeader missing!' ],
1701
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1702
+ 'please contact the responsible development team.\n' +
1703
+ ' ErrorCode: NIT_LOCAL|DyNTS-AS0-GT0',
1704
+ __userMessages: [
1705
+ 'We encountered an unhandled Auth Error, \n' +
1706
+ 'please contact the responsible development team.\n' +
1707
+ ' ErrorCode: NIT_LOCAL|DyNTS-AS0-GT0'
1708
+ ],
1709
+ ___handled: false,
1710
+ ___status: 401,
1711
+ ___issuer: 'MISSING-ISSUER',
1712
+ ___issuerSystem: '-test-wb-mock-',
1713
+ ___issuerService: 'AuthService',
1714
+ ___systemVersion: '1.0.0',
1715
+ error: Error
1716
+ at DyNTS_OAuth2_AuthService.getTokenFromRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/auth.service.js:34:19)
1717
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:24:32)
1718
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:64:39)
1719
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1720
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1721
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1722
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1723
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1724
+ errors: [
1725
+ Error
1726
+ at DyNTS_OAuth2_AuthService.getTokenFromRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/auth.service.js:34:19)
1727
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:24:32)
1728
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:64:39)
1729
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1730
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1731
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1732
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1733
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1734
+ ],
1735
+ stack: 'Error\n' +
1736
+ ' at DyNTS_OAuth2_AuthService.getTokenFromRequest (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/auth.service.js:34:19)\n' +
1737
+ ' at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:24:32)\n' +
1738
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:64:39)\n' +
1739
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1740
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1741
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1742
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1743
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1744
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_services/core/auth.service.js:34:19',
1745
+ level: 'error',
1746
+ additionalContent: {},
1747
+ confidentialContent: { headers: {} }
1748
+ } 
1749
+ .OAuth2 token authentication failed DyFM_Error {
1750
+ __created: 2026-06-05T12:50:56.488Z,
1751
+ __createdBy: 'AuthService',
1752
+ __lastModified: 2026-06-05T12:50:56.488Z,
1753
+ __lastModifiedBy: 'AuthService',
1754
+ __v: 0,
1755
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1756
+ _errorCode: 'NIT_LOCAL|DyNTS-OA2-AT1',
1757
+ _errorCodes: [ 'NIT_LOCAL|DyNTS-OA2-AT1' ],
1758
+ _message: 'Invalid token format',
1759
+ _messages: [ 'Invalid token format' ],
1760
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1761
+ 'please contact the responsible development team.\n' +
1762
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-AT1',
1763
+ __userMessages: [
1764
+ 'We encountered an unhandled Auth Error, \n' +
1765
+ 'please contact the responsible development team.\n' +
1766
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-AT1'
1767
+ ],
1768
+ ___handled: false,
1769
+ ___status: 401,
1770
+ ___issuer: 'MISSING-ISSUER',
1771
+ ___issuerSystem: '-test-wb-mock-',
1772
+ ___issuerService: 'AuthService',
1773
+ ___systemVersion: '1.0.0',
1774
+ error: Error
1775
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1776
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:60:39)
1777
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1778
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1779
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1780
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1781
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1782
+ errors: [
1783
+ Error
1784
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1785
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:60:39)
1786
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1787
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1788
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1789
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1790
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1791
+ ],
1792
+ stack: 'Error\n' +
1793
+ ' at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)\n' +
1794
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:60:39)\n' +
1795
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1796
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1797
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1798
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1799
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1800
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23',
1801
+ level: 'error',
1802
+ additionalContent: {},
1803
+ confidentialContent: {}
1804
+ } 
1805
+ .OAuth2 token authentication failed DyFM_Error {
1806
+ __created: 2026-06-05T12:50:56.490Z,
1807
+ __createdBy: 'AuthService',
1808
+ __lastModified: 2026-06-05T12:50:56.490Z,
1809
+ __lastModifiedBy: 'AuthService',
1810
+ __v: 0,
1811
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1812
+ _errorCode: 'NIT_LOCAL|DyNTS-OA2-AT1',
1813
+ _errorCodes: [ 'NIT_LOCAL|DyNTS-OA2-AT1' ],
1814
+ _message: 'Invalid token format',
1815
+ _messages: [ 'Invalid token format' ],
1816
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1817
+ 'please contact the responsible development team.\n' +
1818
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-AT1',
1819
+ __userMessages: [
1820
+ 'We encountered an unhandled Auth Error, \n' +
1821
+ 'please contact the responsible development team.\n' +
1822
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-AT1'
1823
+ ],
1824
+ ___handled: false,
1825
+ ___status: 401,
1826
+ ___issuer: 'MISSING-ISSUER',
1827
+ ___issuerSystem: '-test-wb-mock-',
1828
+ ___issuerService: 'AuthService',
1829
+ ___systemVersion: '1.0.0',
1830
+ error: Error
1831
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1832
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:82:39)
1833
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1834
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1835
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1836
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1837
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1838
+ errors: [
1839
+ Error
1840
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1841
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:82:39)
1842
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1843
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1844
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1845
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1846
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1847
+ ],
1848
+ stack: 'Error\n' +
1849
+ ' at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)\n' +
1850
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:82:39)\n' +
1851
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1852
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1853
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1854
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1855
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1856
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23',
1857
+ level: 'error',
1858
+ additionalContent: {},
1859
+ confidentialContent: {}
1860
+ } 
1861
+ .OAuth2 token authentication failed DyFM_Error {
1862
+ __created: 2026-06-05T12:50:56.491Z,
1863
+ __createdBy: 'AuthService',
1864
+ __lastModified: 2026-06-05T12:50:56.491Z,
1865
+ __lastModifiedBy: 'AuthService',
1866
+ __v: 0,
1867
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1868
+ _errorCode: 'NIT_LOCAL|DyNTS-OA2-AT1',
1869
+ _errorCodes: [ 'NIT_LOCAL|DyNTS-OA2-AT1' ],
1870
+ _message: 'Invalid token format',
1871
+ _messages: [ 'Invalid token format' ],
1872
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1873
+ 'please contact the responsible development team.\n' +
1874
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-AT1',
1875
+ __userMessages: [
1876
+ 'We encountered an unhandled Auth Error, \n' +
1877
+ 'please contact the responsible development team.\n' +
1878
+ ' ErrorCode: NIT_LOCAL|DyNTS-OA2-AT1'
1879
+ ],
1880
+ ___handled: false,
1881
+ ___status: 401,
1882
+ ___issuer: 'MISSING-ISSUER',
1883
+ ___issuerSystem: '-test-wb-mock-',
1884
+ ___issuerService: 'AuthService',
1885
+ ___systemVersion: '1.0.0',
1886
+ error: Error
1887
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1888
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:75:39)
1889
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1890
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1891
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1892
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1893
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1894
+ errors: [
1895
+ Error
1896
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1897
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:75:39)
1898
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1899
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1900
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1901
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1902
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1903
+ ],
1904
+ stack: 'Error\n' +
1905
+ ' at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)\n' +
1906
+ ' at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:75:39)\n' +
1907
+ ' at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)\n' +
1908
+ ' at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)\n' +
1909
+ ' at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)\n' +
1910
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11\n' +
1911
+ ' at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9',
1912
+ __localStack: '/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23',
1913
+ level: 'error',
1914
+ additionalContent: {},
1915
+ confidentialContent: {}
1916
+ } 
1917
+ ....********.....TESTTTT route: [ '192.168.1.1', '10.0.0.1', '172.16.0.1' ]
1918
+ ..TESTTTT route: [ '192.168.1.1' ]
1919
+ ...........
1920
+
1921
+ \\\\\\\\\\
1922
+ \\\\\\\\\\
1923
+ \\\\\\\\\\
1924
+
1925
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1926
+
1927
+ //////////
1928
+ //////////
1929
+ //////////
1930
+
1931
+ 
1932
+ .
1933
+
1934
+ \\\\\\\\\\
1935
+ \\\\\\\\\\
1936
+ \\\\\\\\\\
1937
+
1938
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1939
+
1940
+ //////////
1941
+ //////////
1942
+ //////////
1943
+
1944
+ 
1945
+ ........Emitting event 'test-event' on socket(unknown)-(0) failed!(1)
1946
+ Emitting event 'test-event' on socket(unknown)-(1) failed!(1)
1947
+ .Emitting event 'test-event' on socket(unknown)-(0) failed!
1948
+ ERROR: socket[socket-1] is not connected! (it will be removed...)
1949
+ Emitting event 'test-event' on socket(unknown)-(0) failed!(1)
1950
+ .Emitting event 'test-event' on socket(unknown)-(0) failed!
1951
+ ERROR: socket[socket-1] is not connected! (it will be removed...)
1952
+ Emitting event 'test-event' on socket(unknown)-(1) failed!
1953
+ ERROR: socket[socket-2] is not connected! (it will be removed...)
1954
+ ..Emitting event 'test-event' on socket(unknown)-(0) failed!(1)
1955
+ Emitting event 'test-event' on socket(unknown)-(1) failed!(1)
1956
+ .................
1957
+ ||||||||||
1958
+
1959
+ checkErrorIsStringifyableOrResolvable error TypeError: Converting circular structure to JSON
1960
+ --> starting at object with constructor 'Object'
1961
+ --- property 'circular' closes the circle
1962
+ at JSON.stringify (<anonymous>)
1963
+ at DyNTS_Errors_DataService.checkErrorIsStringifyableOrResolvable (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/server/errors/errors.data-service.js:270:18)
1964
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/server/errors/errors.data-service.spec.js:156:36)
1965
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1966
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1967
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1968
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1969
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1970
+
1971
+ ||||||||||
1972
+ 
1973
+ ..error not found, saving....
1974
+ ErrorMsg: Test internal error 
1975
+ error saved
1976
+ 
1977
+ ||||||||||
1978
+
1979
+ DyNTS_Error_DataService handling InternalError... Error: Test internal error
1980
+ at UserContext.<anonymous> (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/build/_modules/server/errors/errors.data-service.spec.js:134:47)
1981
+ at QueueRunner.attempt (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1982
+ at QueueRunner.run (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1983
+ at runNext (/tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1984
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1985
+ at /tmp/pipeline-runs/994ec8fb-8ada-4e3d-8262-fa9f6c7d027c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1986
+
1987
+ ||||||||||
1988
+ 
1989
+ ...error not saved (user level)
1990
+ ..error not found, saving....
1991
+ ErrorMsg: Dev error 
1992
+ error saved
1993
+ .error found, not saving ("known" error), but increased count,
1994
+ count: 6 
1995
+ ErrorMsg: Duplicate error message 
1996
+ .error not saved (dev version)
1997
+ .error not found, saving....
1998
+ ErrorMsg: New error message 
1999
+ error saved
2000
+ ..
2001
+
2002
+ Pending:
2003
+
2004
+ 1) | DyNTS_DiBo_Operations_Util | findChannelByName | should return undefined when channel not found
2005
+ No reason given
2006
+
2007
+
2008
+ 2) | DyNTS_DiBo_Operations_Util | findChannelByName | should find text channel by name
2009
+ No reason given
2010
+
2011
+
2012
+ 3) | DyNTS_DiBo_Operations_Util | deleteMessage | should delete message successfully
2013
+ No reason given
2014
+
2015
+
2016
+ 4) | DyNTS_DiBo_Operations_Util | deleteMessage | should handle delete error gracefully
2017
+ No reason given
2018
+
2019
+
2020
+ 5) | DyNTS_DiBo_Operations_Util | getMemberIdByName | should return member id by username
2021
+ No reason given
2022
+
2023
+
2024
+ 6) | DyNTS_DiBo_Operations_Util | getMemberIdByName | should return undefined when member not found
2025
+ No reason given
2026
+
2027
+
2028
+ 7) | DyNTS_DiBo_Operations_Util | findTextChannelByName | should find and return text channel
2029
+ No reason given
2030
+
2031
+
2032
+ 8) | DyNTS_DiBo_Operations_Util | findTextChannelByName | should throw error when channel is not text based
2033
+ No reason given
2034
+
2035
+
2036
+ 9) | DyNTS_DiBo_Operations_Util | findVoiceChannelByName | should find and return voice channel
2037
+ No reason given
2038
+
2039
+
2040
+ 10) | DyNTS_DiBo_Operations_Util | findVoiceChannelByName | should throw error when channel is not voice based
2041
+ No reason given
2042
+
2043
+
2044
+ 11) | DyNTS_DiBo_Operations_Util | sendMessageToChannelByName | should send message to text channel
2045
+ No reason given
2046
+
2047
+
2048
+ 12) | DyNTS_DiBo_Operations_Util | sendMessageToChannelByName | should log error when channel is not text based
2049
+ No reason given
2050
+
2051
+
2052
+ 13) | DyNTS_DiAs_IO_ControlService | should get LLM chat service from main bot service
2053
+ No reason given
2054
+
2055
+
2056
+ 14) | DyNTS_DiAs_IO_ControlService | handleMessage | should handle message with AI and reply
2057
+ No reason given
2058
+
2059
+
2060
+ 15) | DyNTS_DiAs_IO_ControlService | handleMessage | should not send error reply when dontSendErrorReply is true
2061
+ No reason given
2062
+
2063
+
2064
+ 16) | DyNTS_DiAs_IO_ControlService | handleMessage | should send error reply when error occurs and debugLevel >= 1
2065
+ No reason given
2066
+
2067
+
2068
+ 17) | DyNTS_DiAs_IO_ControlService | should be a singleton instance
2069
+ No reason given
2070
+
2071
+
2072
+ 18) | DyNTS_Bot_Main_ControlService | setup | should throw error when botIO_CS not found
2073
+ No reason given
2074
+
2075
+
2076
+ 19) | DyNTS_Bot_Main_ControlService | setup | should setup all services
2077
+ No reason given
2078
+
2079
+
2080
+ 20) | DyNTS_Bot_Main_ControlService | setup | should throw error when no providers configured
2081
+ No reason given
2082
+
2083
+
2084
+ 21) | DyNTS_Bot_Main_ControlService | setup | should throw error when default provider type not set
2085
+ No reason given
2086
+
2087
+
2088
+ 22) | DyNTS_Bot_Main_ControlService | sendReport | should send report via default provider
2089
+ No reason given
2090
+
2091
+
2092
+ 23) | DyNTS_Bot_Main_ControlService | should be a singleton instance
2093
+ No reason given
2094
+
2095
+
2096
+ 24) | DyNTS_Bot_Main_ControlService | defaultProvider | should return default provider after setup
2097
+ No reason given
2098
+
2099
+
2100
+ 25) | DyNTS_Bot_Main_ControlService | start | should start routines and botIO services
2101
+ No reason given
2102
+
2103
+
2104
+ 26) | DyNTS_Bot_Main_ControlService | getProviderByType | should return provider by type
2105
+ No reason given
2106
+
2107
+
2108
+ 27) | DyNTS_Bot_Commands_ControlService | defaultProvider | should return default provider from main bot service
2109
+ No reason given
2110
+
2111
+
2112
+ 28) | DyNTS_Bot_Commands_ControlService | start | should succeed when default provider is started
2113
+ No reason given
2114
+
2115
+
2116
+ 29) | DyNTS_Bot_Commands_ControlService | start | should throw error when default provider not started
2117
+ No reason given
2118
+
2119
+
2120
+ 30) | DyNTS_Bot_Commands_ControlService | setup | should setup main bot service
2121
+ No reason given
2122
+
2123
+
2124
+ 31) | DyNTS_Bot_Commands_ControlService | setup | should throw error when main bot service not found
2125
+ No reason given
2126
+
2127
+
2128
+ 32) | DyNTS_Bot_Commands_ControlService | should be a singleton instance
2129
+ No reason given
2130
+
2131
+
2132
+ 33) | DyNTS_DiAs_Util | gatherMessages | should use provided limit
2133
+ No reason given
2134
+
2135
+
2136
+ 34) | DyNTS_DiAs_Util | gatherMessages | should filter messages with skipFlags
2137
+ No reason given
2138
+
2139
+
2140
+ 35) | DyNTS_DiAs_Util | gatherMessages | should throw error when channel is not text based
2141
+ No reason given
2142
+
2143
+
2144
+ 36) | DyNTS_DiAs_Util | gatherMessages | should use default limit when not provided
2145
+ No reason given
2146
+
2147
+
2148
+ 37) | DyNTS_DiAs_Util | gatherMessages | should add author display name when third party messages exist
2149
+ No reason given
2150
+
2151
+
2152
+ 38) | DyNTS_DiAs_Util | gatherMessages | should throw DyFM_Error on fetch error
2153
+ No reason given
2154
+
2155
+
2156
+ 39) | DyNTS_DiAs_Util | gatherMessagesForMessage | should throw error when channel is not text based
2157
+ No reason given
2158
+
2159
+
2160
+ 40) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should handle empty messages array
2161
+ No reason given
2162
+
2163
+
2164
+ 41) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should convert bot messages with user translation flags to user role
2165
+ No reason given
2166
+
2167
+
2168
+ 42) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should convert user messages to user role
2169
+ No reason given
2170
+
2171
+
2172
+ 43) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should identify bot messages by author.bot flag
2173
+ No reason given
2174
+
2175
+
2176
+ 44) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should convert Discord messages to AI conversation format
2177
+ No reason given
2178
+
2179
+
2180
+ 45) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should identify bot messages by author.displayName match
2181
+ No reason given
2182
+
2183
+
2184
+ 46) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should identify bot messages by author.id match
2185
+ No reason given
2186
+
2187
+
2188
+ 47) | DyNTS_DiBo_IO_ControlService | properties | should return botDisplayName from main service
2189
+ No reason given
2190
+
2191
+
2192
+ 48) | DyNTS_DiBo_IO_ControlService | properties | should return botClientId from main service
2193
+ No reason given
2194
+
2195
+
2196
+ 49) | DyNTS_DiBo_IO_ControlService | properties | should return discordServer from main service
2197
+ No reason given
2198
+
2199
+
2200
+ 50) | DyNTS_DiBo_IO_ControlService | handleIfCommand | should not handle if message is not command
2201
+ No reason given
2202
+
2203
+
2204
+ 51) | DyNTS_DiBo_IO_ControlService | handleIfCommand | should handle command if message is command
2205
+ No reason given
2206
+
2207
+
2208
+ 52) | DyNTS_DiBo_IO_ControlService | isCommand | should return false if message does not start with command operator
2209
+ No reason given
2210
+
2211
+
2212
+ 53) | DyNTS_DiBo_IO_ControlService | isCommand | should return true if message starts with command operator
2213
+ No reason given
2214
+
2215
+
2216
+ 54) | DyNTS_DiBo_IO_ControlService | start | should start service successfully
2217
+ No reason given
2218
+
2219
+
2220
+ 55) | DyNTS_DiBo_IO_ControlService | start | should throw error if discordServer not found
2221
+ No reason given
2222
+
2223
+
2224
+ 56) | DyNTS_DiBo_IO_ControlService | setup | should setup service with main and commands services
2225
+ No reason given
2226
+
2227
+
2228
+ 57) | DyNTS_DiBo_IO_ControlService | setup | should throw error if commands service not found
2229
+ No reason given
2230
+
2231
+
2232
+ 58) | DyNTS_DiBo_IO_ControlService | setup | should throw error if main service not found
2233
+ No reason given
2234
+
2235
+
2236
+ 59) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should handle errors gracefully
2237
+ No reason given
2238
+
2239
+
2240
+ 60) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should not handle message if not for bot
2241
+ No reason given
2242
+
2243
+
2244
+ 61) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should handle command if message is command
2245
+ No reason given
2246
+
2247
+
2248
+ 62) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should handle message if for bot
2249
+ No reason given
2250
+
2251
+
2252
+ 63) | DyNTS_DiBo_Commands_ControlService | start | should throw error if discordServer not found
2253
+ No reason given
2254
+
2255
+
2256
+ 64) | DyNTS_DiBo_Commands_ControlService | start | should start service successfully
2257
+ No reason given
2258
+
2259
+
2260
+ 65) | DyNTS_DiBo_Commands_ControlService | setup | should throw error if main service not found
2261
+ No reason given
2262
+
2263
+
2264
+ 66) | DyNTS_DiBo_Commands_ControlService | setup | should setup service with main service
2265
+ No reason given
2266
+
2267
+
2268
+ 67) | DyNTS_DiBo_Commands_ControlService | properties | should return discordServer from main service
2269
+ No reason given
2270
+
2271
+
2272
+ 68) | DyNTS_DiBo_Commands_ControlService | handleCommand | should handle command successfully
2273
+ No reason given
2274
+
2275
+
2276
+ 69) | DyNTS_DiBo_Commands_ControlService | handleCommand | should handle command errors
2277
+ No reason given
2278
+
2279
+
2280
+ 70) | DyNTS_DiBo_Main_ControlService | constructor | should initialize Discord client
2281
+ No reason given
2282
+
2283
+
2284
+ 71) | DyNTS_DiBo_Main_ControlService | constructor | should throw error if client already initialized
2285
+ No reason given
2286
+
2287
+
2288
+ 72) | DyNTS_DiBo_Main_ControlService | setup | should setup bot services
2289
+ No reason given
2290
+
2291
+
2292
+ 73) | DyNTS_DiBo_Main_ControlService | setup | should throw error if botIO_CS not found
2293
+ No reason given
2294
+
2295
+
2296
+ 74) | DyNTS_DiBo_Main_ControlService | setup | should throw error if guildId not found
2297
+ No reason given
2298
+
2299
+
2300
+ 75) | DyNTS_DiBo_Main_ControlService | setup | should throw error if token not found
2301
+ No reason given
2302
+
2303
+
2304
+ 76) | DyNTS_DiBo_Main_ControlService | getChannelByName | should return channel from cache if exists
2305
+ No reason given
2306
+
2307
+
2308
+ 77) | DyNTS_DiBo_Main_ControlService | getChannelByName | should find channel in guild and cache it
2309
+ No reason given
2310
+
2311
+
2312
+ 78) | DyNTS_DiBo_Main_ControlService | getRolePingsByName | should return multiple role pings
2313
+ No reason given
2314
+
2315
+
2316
+ 79) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should send message to channel
2317
+ No reason given
2318
+
2319
+
2320
+ 80) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should throw error if channel is not text-based
2321
+ No reason given
2322
+
2323
+
2324
+ 81) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should split long messages
2325
+ No reason given
2326
+
2327
+
2328
+ 82) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should throw error if channel not found
2329
+ No reason given
2330
+
2331
+
2332
+ 83) | DyNTS_DiBo_Main_ControlService | start | should start bot services
2333
+ No reason given
2334
+
2335
+
2336
+ 84) | DyNTS_DiBo_Main_ControlService | start | should throw error if discordServer not initialized
2337
+ No reason given
2338
+
2339
+
2340
+ 85) | DyNTS_DiBo_Main_ControlService | properties | should return botClientId from client user
2341
+ No reason given
2342
+
2343
+
2344
+ 86) | DyNTS_DiBo_Main_ControlService | properties | should return botDisplayName from client user
2345
+ No reason given
2346
+
2347
+
2348
+ 87) | DyNTS_DiBo_Main_ControlService | properties | should return discordServer
2349
+ No reason given
2350
+
2351
+
2352
+ 88) | DyNTS_DiBo_Main_ControlService | getRolePingByName | should return role ping
2353
+ No reason given
2354
+
2355
+
2356
+ 89) | DyNTS_DiBo_Main_ControlService | getRolePingByName | should return empty string if role not found
2357
+ No reason given
2358
+
2359
+
2360
+ 90) | DyNTS_DiBo_Main_ControlService | getRoleByName | should find role in guild and cache it
2361
+ No reason given
2362
+
2363
+
2364
+ 91) | DyNTS_DiBo_Main_ControlService | getRoleByName | should return role from cache if exists
2365
+ No reason given
2366
+
2367
+
2368
+ 92) | DyNTS_Bot_MessagingProvider_ServiceBase | should be a singleton instance
2369
+ No reason given
2370
+
2371
+
2372
+ 93) | DyNTS_Bot_MessagingProvider_ServiceBase | wrapChannel | should wrap channel correctly
2373
+ No reason given
2374
+
2375
+
2376
+ 94) | DyNTS_Bot_MessagingProvider_ServiceBase | wrapMessage | should wrap message correctly
2377
+ No reason given
2378
+
2379
+
2380
+ 95) | DyNTS_Bot_MessagingProvider_ServiceBase | getUserMention | should return user mention
2381
+ No reason given
2382
+
2383
+
2384
+ 96) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have botDisplayName getter
2385
+ No reason given
2386
+
2387
+
2388
+ 97) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have type property
2389
+ No reason given
2390
+
2391
+
2392
+ 98) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have config property
2393
+ No reason given
2394
+
2395
+
2396
+ 99) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have botId getter
2397
+ No reason given
2398
+
2399
+
2400
+ 100) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have name property
2401
+ No reason given
2402
+
2403
+
2404
+ 101) | DyNTS_Bot_MessagingProvider_ServiceBase | wrapUser | should wrap user correctly
2405
+ No reason given
2406
+
2407
+
2408
+ 102) | DyNTS_Bot_MessagingProvider_ServiceBase | roleCache | should cache roles
2409
+ No reason given
2410
+
2411
+
2412
+ 103) | DyNTS_Bot_MessagingProvider_ServiceBase | sendReportIn | should send report in report channel
2413
+ No reason given
2414
+
2415
+
2416
+ 104) | DyNTS_Bot_MessagingProvider_ServiceBase | channelCache | should cache channels
2417
+ No reason given
2418
+
2419
+
2420
+ 105) | DyNTS_Bot_MessagingProvider_ServiceBase | sendReport | should send report to report channel
2421
+ No reason given
2422
+
2423
+
2424
+ 106) | DyNTS_Bot_IO_ControlService | should be a singleton instance
2425
+ No reason given
2426
+
2427
+
2428
+ 107) | DyNTS_Bot_IO_ControlService | defaultProvider | should return default provider from main bot service
2429
+ No reason given
2430
+
2431
+
2432
+ 108) | DyNTS_Bot_IO_ControlService | start | should throw error when default provider not initialized
2433
+ No reason given
2434
+
2435
+
2436
+ 109) | DyNTS_Bot_IO_ControlService | start | should succeed when default provider is initialized
2437
+ No reason given
2438
+
2439
+
2440
+ 110) | DyNTS_Bot_IO_ControlService | setup | should throw error when commands service not found
2441
+ No reason given
2442
+
2443
+
2444
+ 111) | DyNTS_Bot_IO_ControlService | setup | should throw error when main bot service not found
2445
+ No reason given
2446
+
2447
+
2448
+ 112) | DyNTS_Bot_IO_ControlService | setup | should setup main bot and commands services
2449
+ No reason given
2450
+
2451
+
2452
+ 113) | DyNTS_Bot_IO_ControlService | handleIfCommand | should return false when message is not a command
2453
+ No reason given
2454
+
2455
+
2456
+ 114) | DyNTS_Bot_IO_ControlService | handleIfCommand | should handle command when message is a command
2457
+ No reason given
2458
+
2459
+
2460
+ 115) | DyNTS_Bot_IO_ControlService | getMessageIsForBotToHandle | should return false when bot not initialized
2461
+ No reason given
2462
+
2463
+
2464
+ 116) | DyNTS_Bot_IO_ControlService | getMessageIsForBotToHandle | should return false when message is from bot and bots not allowed
2465
+ No reason given
2466
+
2467
+
2468
+ 117) | DyNTS_Bot_IO_ControlService | getMessageIsForBotToHandle | should return false when message has skip flags
2469
+ No reason given
2470
+
2471
+
2472
+ 118) | DyNTS_Bot_IO_ControlService | isCommand | should return true when no command operator is set
2473
+ No reason given
2474
+
2475
+
2476
+ 119) | DyNTS_Bot_IO_ControlService | isCommand | should return true when message starts with command operator
2477
+ No reason given
2478
+
2479
+
2480
+ 120) | DyNTS_Bot_IO_ControlService | isCommand | should return false when message does not start with command operator
2481
+ No reason given
2482
+
2483
+
2484
+ 121) | DyNTS_DiAs_Main_ControlService | should extend DiAs_ServiceBase
2485
+ No reason given
2486
+
2487
+
2488
+ 122) | DyNTS_DiAs_Main_ControlService | should be a singleton instance
2489
+ No reason given
2490
+
2491
+
2492
+ 123) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForChannel | should gather and filter messages
2493
+ No reason given
2494
+
2495
+
2496
+ 124) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForChannel | should sort messages by timestamp
2497
+ No reason given
2498
+
2499
+
2500
+ 125) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForChannel | should add source info when requested
2501
+ No reason given
2502
+
2503
+
2504
+ 126) | DyNTS_DiAs_ServiceBase | gatherMessagesAsOAIConversation | should convert messages to OAI conversation format
2505
+ No reason given
2506
+
2507
+
2508
+ 127) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForMessage | should use custom limit
2509
+ No reason given
2510
+
2511
+
2512
+ 128) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForMessage | should gather messages for a message
2513
+ No reason given
2514
+
2515
+
2516
+ 129) | DyNTS_DiAs_ServiceBase | should have default system prompt
2517
+ No reason given
2518
+
2519
+
2520
+ 130) | DyNTS_DiAs_ServiceBase | should initialize LLM chat service
2521
+ No reason given
2522
+
2523
+
2524
+ 131) | DyNTS_DiAV_Main_ControlService | inheritance | should inherit from DiAs Main Control Service
2525
+ No reason given
2526
+
2527
+
2528
+ 132) | DyNTS_DiBo_Routines_ControlService | properties | should return discordServer from main service
2529
+ No reason given
2530
+
2531
+
2532
+ 133) | DyNTS_DiBo_Routines_ControlService | properties | should return routinesStarted as false initially
2533
+ No reason given
2534
+
2535
+
2536
+ 134) | DyNTS_DiBo_Routines_ControlService | setup | should setup service with main service
2537
+ No reason given
2538
+
2539
+
2540
+ 135) | DyNTS_DiBo_Routines_ControlService | setup | should throw error if main service not found
2541
+ No reason given
2542
+
2543
+
2544
+ 136) | DyNTS_DiBo_Routines_ControlService | start | should throw error if discordServer not found
2545
+ No reason given
2546
+
2547
+
2548
+ 137) | DyNTS_DiBo_Routines_ControlService | start | should handle start errors
2549
+ No reason given
2550
+
2551
+
2552
+ 138) | DyNTS_DiBo_Routines_ControlService | start | should start routines and set routinesStarted to true
2553
+ No reason given
2554
+
2555
+
2556
+ 139) | DyNTS_Bot_Routines_ControlService | should be a singleton instance
2557
+ No reason given
2558
+
2559
+
2560
+ 140) | DyNTS_Bot_Routines_ControlService | setup | should setup main bot service
2561
+ No reason given
2562
+
2563
+
2564
+ 141) | DyNTS_Bot_Routines_ControlService | setup | should throw error when main bot service not found
2565
+ No reason given
2566
+
2567
+
2568
+ 142) | DyNTS_Bot_Routines_ControlService | defaultProvider | should return default provider from main bot service
2569
+ No reason given
2570
+
2571
+
2572
+ 143) | DyNTS_Bot_Routines_ControlService | routinesStarted | should return undefined initially
2573
+ No reason given
2574
+
2575
+
2576
+ 144) | DyNTS_Bot_Routines_ControlService | routinesStarted | should return true after start
2577
+ No reason given
2578
+
2579
+
2580
+ 145) | DyNTS_Bot_Routines_ControlService | start | should start routines and set routinesStarted flag
2581
+ No reason given
2582
+
2583
+
2584
+ 146) | DyNTS_Bot_Routines_ControlService | start | should throw error when default provider not started
2585
+ No reason given
2586
+
2587
+ 1256 specs, 0 failures, 146 pending specs
2588
+ Finished in 4.289 seconds
2589
+ Randomized with seed 65195 (jasmine --random=true --seed=65195)
2590
+ [cdp] ✓ test (27.8s)
2591
+ [cdp] ▶ npm-publish (started: 12:50:57 PM)
2592
+ npm publish attempt 1/3
2593
+
2594
+ > @futdevpro/nts-dynamo@01.15.43 prepare
2595
+ > husky
2596
+